My Name is Kay....

DIY , 먹방 , 개발 , 육아 , 여행 좋아합니다.
AdBlock 사용시 화면이 정상적으로 노출되지 않습니다.
포스팅 관련 문의 및 개발 문의는 Email : wkzkfmxksi@gmail.com

추가 포스팅이 이뤄지지 않는 블로그입니다. 문의는 wkzkfmxksi@gmail.com 으로 연락주세요.
kay
조회 수 5352 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

site : http://www.gougouzian.fr/  Front & Back -end Developer

Plugin & method Url : http://www.gougouzian.fr/projects/jquery/moodular/  (Download : moodular.js )

Test Url : http://www.uhoon.co.kr/test/885.html

license : MIT License / GPL - GNU General Public License 



이미지 슬라이드 , 회전 , 터치도 지원한다고 합니다. 대형 배너나 이미지슬라이드등에 용이할것같습니다.


easing을 이용해서 다양한 effect를 지원하는 등..옵션이 상당히 많습니다.


moodular.png



<!doctype html>
<html>
<head>
	<meta charset="utf-8" />
	<title>moodular </title>
</head>
<style type="text/css"> 
/* moodular */
#moodular { overflow: hidden }
	#moodular, #moodular li { margin: 0; padding: 0; list-style: none; width: 900px; }
/* examples */
	#moodular, #moodular li { height: 400px; }
		#moodular li p { display: block; height: 400px; }
			#moodular li p span { display: inline-block; padding: 10px 10px; color: #FFF; margin: 10px; }
#nav_wrapper { margin: 0; padding: 0; list-style: none; width: 80px; height: 20px; overflow: hidden }
	#nav_wrapper li { text-align: center; }
		#nav_wrapper li.active { color: #FFF; }
 
</style>  
<body>

<ul id="moodular">
	<li><p style="background-image: url(http://www.gougouzian.fr/projects/jquery/moodular/assets/img/photo01.jpg);"><span>가나다라</span></p></li>
	<li><p style="background-image: url(http://www.gougouzian.fr/projects/jquery/moodular/assets/img/photo02.jpg);"><span>마바사아</span></p></li>
	<li><p style="background-image: url(http://www.gougouzian.fr/projects/jquery/moodular/assets/img/photo03.jpg);"><span>자차카</span></p></li>
	<li><p style="background-image: url(http://www.gougouzian.fr/projects/jquery/moodular/assets/img/photo04.jpg);"><span>타파하</span></p></li>
	<li><p style="background-image: url(http://www.gougouzian.fr/projects/jquery/moodular/assets/img/photo05.jpg);"><span>www.goodkiss.co.kr</span></p></li>
	<li><p style="background-image: url(http://www.gougouzian.fr/projects/jquery/moodular/assets/img/photo06.jpg);"><span>www.uhoon.co.kr</span></p></li>
</ul>  
<!-- script -->
<script src="http://code.jquery.com/jquery-latest.min.js"></script>  
<script src="885/jquery.easing.1.3.js"></script> 
<script src="885/moodular.js"></script>  
<script>
jQuery(document).ready(function () { 
	var couleurs = ["rgba(219,56,92, 0.6)"	,
	"rgba(104,197,255, 0.6)",
	"rgba(151,90,193, 0.6)",
	"rgba(193,70,136, 0.6)",
	"rgba(168,123,187, 0.6)",
	"rgba(41,186,116, 0.6)",
	"rgba(148,189,36, 0.6)",
	"rgba(240,61,44, 0.6)",
	"rgba(56,155,217, 0.6)",
	"rgba(32,187,185, 0.6)", 
	"rgba(32,169,255, 0.6)"];

	jQuery('#moodular li p span').each(function() {
		jQuery(this).css('background-color', couleurs[Math.floor(Math.random() * couleurs.length)]);
	});

	jQuery('#moodular').moodular({
/* core parameters */
	// effects separated by space
	effects: 'mosaic',
	// controls separated by space
	controls: 'keys',
	// if you want some yummy transition
	easing: 'easeOutExpo',
	// step 
	step: 1,
	// selector is to specify the children of your element (tagName)
	selector: 'li',
	// if timer is 0 the carrousel isn't automatic, else it's the interval in ms between each step
	timer: 5000,
	// speed is the time in ms of the transition
	speed: 5000,
	// queuing animation ?
	queue: false,
/* parameters for controls or effects */
	// keys control
	keyPrev: 37, // left key
	keyNext: 39, // right key
	// mosaic effects
	slices: [10, 4],
	mode : 'random'//,
	// others
	//your_params : 'cause you can create your own effect or control'
  }); 
});
</script>
</body>
</html>


?

  1. jQuery Formatnumber , 콤마처리

    Date2015.11.03 CategoryPlugIn Bykay Views2101
    Read More
  2. 기본값 가져오기 get default value

    Date2014.10.19 Categoryetc Bykay Views2323
    Read More
  3. 페이지 또는 객체에서 특정 키워드 강조하기

    Date2014.06.14 Categoryetc Bykay Views2716
    Read More
  4. FadeIn , FadeOut 을 이용한 간단한 메인 배너 이미지 노출.

    Date2014.10.23 Categoryetc Bykay Views2999
    Read More
  5. Jquery 로 defaultValue 읽어오기

    Date2013.10.03 CategoryA to Z Bykay Views3754
    Read More
  6. $.trim(str) trim...

    Date2013.10.16 Categoryetc Bykay Views3958
    Read More
  7. readonly , disabled 지정하기

    Date2013.10.01 CategoryA to Z Bykay Views4109
    Read More
  8. jQuery Learning Center - 공부 공부

    Date2013.04.05 CategoryA to Z Bykay Views4236
    Read More
  9. Jquery 갤러리 "jQuery-awesome-images-Gallery-lightbox"

    Date2013.07.30 CategoryUI Bykay Views4260
    Read More
  10. Jquery Load 유무 체크하기

    Date2014.02.12 Categoryetc Bykay Views4287
    Read More
  11. 스크롤 따라 다니는 배너

    Date2013.09.14 CategoryPlugIn Bykay Views4517
    Read More
  12. 특정 객체가 화면에 보이는지 여부 확인

    Date2015.12.14 CategoryUI Bykay Views4897
    Read More
  13. .on

    Date2013.04.03 CategoryUI Bykay Views4919
    Read More
  14. 객체 초기화

    Date2013.04.04 CategoryUI Bykay Views4958
    Read More
  15. JQuery A to Z

    Date2013.01.02 CategoryA to Z Bykay Views5114
    Read More
  16. Menu Bar

    Date2013.02.06 CategoryUI Bykay Views5176
    Read More
  17. Moodular - 회전,슬라이더, 터치 ,모자이크

    Date2013.05.04 CategoryPlugIn Bykay Views5352
    Read More
  18. AutoCompleate - ( XML + Jquery )

    Date2013.03.08 CategoryUI Bykay Views5540
    Read More
  19. Tree 메뉴만들기

    Date2013.08.14 CategoryPlugIn Bykay Views5648
    Read More
  20. 1.9x 버전 $.browser 삭제 대체 사용

    Date2013.04.26 Categoryetc Bykay Views5661
    Read More
Board Pagination Prev 1 2 3 Next
/ 3