/** * Title : Slide Banner * Company : motionj.com * Author : Won Joso (motionj.com) * Email : joso@motionj.com * URL : http://www.motionj.com * Version : v1.0 * License : Free (»ç¿ë¹üÀ§´Â Á¦ÇÑÀÌ ¾øÀ¸³ª, ÁÖ¼®À» Á¦°ÅÇÏ°í³ª ÀçÆǸſëÀ¸·Î ÀÌ¿ëµÇ¼­´Â ¾ÊµË´Ï´Ù.) * Description : * * width : ¹è³ÊÀÇ ³Êºñ, ³ôÀÌ´Â css ¿¡¼­ Á¶Á¤. ³Êºñ´Â ¸ð¼Ç°ú °ü·ÃÀֱ⠶§¹®¿¡ ¹Ýµå½Ã ¿É¼Ç°ªÀ¸·Î ÇؾßÇÔ. * speed : 1000 ´ç 1ÃÊ. * random_start : true ÀÎ °æ¿ì ½ÃÀÛ ¹è³Ê°¡ ·£´ý. * pause : true ÀÎ °æ¿ì ÀÚµ¿ ¸ð¼ÇÀÌ ÁøÇà ¾ÊµÊ. **/ (function($){ $.fn.motionj_slide_banner = function(o){ o = $.extend({ width : 245, speed : 2000, random_start : false, pause : false }, o || {}); return this.each(function(){ var e = $(this); var no = 0; var dot_over = false; var count = e.find('ul li').length - 1; if(count < 1){ return; } if(o.random_start){ no = Math.floor(Math.random() * e.find('ul li').length); } e.find('ul li:eq('+no+')').siblings('li').css('left',o.width+'px'); var dot; for(var i=0;i<=count;i++){ dot += '
  • '; } $('