茄子在线看片免费人成视频,午夜福利精品a在线观看,国产高清自产拍在线观看,久久综合久久狠狠综合

    <s id="ddbnn"></s>
  • <sub id="ddbnn"><ol id="ddbnn"></ol></sub>

  • <legend id="ddbnn"></legend><s id="ddbnn"></s>

    自己使用jquery寫的一個無縫滾動的插件
    來源:易賢網(wǎng) 閱讀:1852 次 日期:2014-09-15 17:46:03
    溫馨提示:易賢網(wǎng)小編為您整理了“自己使用jquery寫的一個無縫滾動的插件”,方便廣大網(wǎng)友查閱!

    html代碼:

    代碼如下:

    <h1>無縫滾動,向右滾動</h1>

    <ul id=guoul1>

    <li><img src=img/f1.jpg alt=f1/></li>

    <li><img src=img/f2.jpg alt=f2/></li>

    <li><img src=img/f3.jpg alt=f3/></li>

    <li><img src=img/f4.jpg alt=f4/></li>

    <li><img src=img/f5.jpg alt=f5/></li>

    <li><img src=img/f6.jpg alt=f6/></li>

    <li><img src=img/f7.jpg alt=f7/></li>

    </ul>

    <h1>無縫滾動,向左滾動</h1>

    <ul id=guoul2>

    <li>111111111111</li>

    <li>222222222222</li>

    <li>3333333333333</li>

    <li>4444444444444</li>

    <li>5555555555555</li>

    <li>6666666666666</li>

    <li>7777777777777</li>

    <li>8888888888888</li>

    <li>9999999999999</li>

    </ul>

    <h1>無縫滾動,向上滾動</h1>

    <ul id=guoul3>

    <li>111111111111</li>

    <li>222222222222</li>

    <li>3333333333333</li>

    <li>4444444444444</li>

    <li>5555555555555</li>

    <li>6666666666666</li>

    <li>7777777777777</li>

    <li>8888888888888</li>

    <li>9999999999999</li>

    </ul>

    <h1>無縫滾動,向下滾動</h1>

    <ul id=guoul4>

    <li>111111111111</li>

    <li>222222222222</li>

    <li>3333333333333</li>

    <li>4444444444444</li>

    <li>5555555555555</li>

    <li>6666666666666</li>

    <li>7777777777777</li>

    <li>8888888888888</li>

    <li>9999999999999</li>

    </ul>

    <h1>無縫滾動,非ul,li標簽組合,向右滾動</h1>

    <div id=guoul5>

    <p>111111111111</p>

    <p>222222222222</p>

    <p>3333333333333</p>

    <p>4444444444444</p>

    <p>5555555555555</p>

    <p>6666666666666</p>

    <p>7777777777777</p>

    <p>8888888888888</p>

    <p>9999999999999</p>

    </div>

    <h1>不動</h1>

    <ul id=guoul6>

    <li>111111111111</li>

    <li>222222222222</li>

    <li>3333333333333</li>

    <li>4444444444444</li>

    <li>5555555555555</li>

    <li>6666666666666</li>

    <li>7777777777777</li>

    <li>8888888888888</li>

    <li>9999999999999</li>

    </ul>

    css代碼:

    代碼如下:

    ul, li,h1 { margin: 0; padding: 0; list-style-type:none;}

    ul,div { height: 200px; border: 1px solid red; width: 300px; padding: 30px;margin:10px;list-style-type:none;}

    li,p { height: 30px; line-height: 30px; margin-top: 10px; background-color: gray; color: yellow; margin-left:10px;}

    #guoul1{ width:1000px; height:188px;margin: 0; padding: 0;}

    #guoul1 li{ width:300px; height:188px;margin: 0; padding: 0; margin-left:10px;}

    js插件代碼:

    代碼如下:

    ; (function ($) {

    var defaults = {

    dir: left, //none:不動,up:上,right:右,down:下,right:左

    delay: 30,//執(zhí)行時間

    };

    $.fn.gyscontentdisplay = function (opt) {

    opt = $.extend({}, defaults, opt);

    //全局變量區(qū)域

    var obj = $(this); //當前對象

    obj.css({ overflow: hidden }); //初始化元素

    if (opt.dir == none) return;

    var objlis = obj.children(); //對象中地子元素

    objlis.css({ overflow: hidden });

    var objsize = 0; //外框尺寸

    var scrollevent = scrollleft; //滾動條地滾動方向

    var litotalsize = 0, litotalsizeother = 0; //每個li元素地尺寸(寬或者高),克隆之后地總尺寸

    var scrollsize = 0, //滾動條地實際距離

    scrollsizemax = 0, //滾動條地最大距離

    scrollsizemin = 0; //滾動條地最小距離

    var interval = ; //記錄setinterval

    if (opt.dir == up || opt.dir == down) {//上下

    objsize = obj.innerheight();

    scrollevent = scrolltop;

    obj.css({ padding-top: 0, padding-bottom: 0 }).height(objsize);

    }

    else if (opt.dir == left || opt.dir == right) {//左右

    objsize = obj.innerwidth();

    scrollevent = scrollleft;

    obj.css({ padding-left: 0, padding-right: 0 }).width(objsize);

    }

    else {

    alert(你地dir參數(shù)有誤);

    }

    var getchildtotalsize = function (dir) {// 定義獲取li總尺寸地方法

    if (dir == left || dir == right) {

    objlis.css(float, left);

    return function () {

    objlis.each(function () {

    litotalsize += $(this).outerwidth(true);

    });

    }

    }

    else if (dir == up || dir == down) {

    objlis.css(float, none);

    return function () {

    objlis.each(function () {

    litotalsize += $(this).outerheight(true);

    });

    }

    }

    } (opt.dir);

    getchildtotalsize(); //獲的所有地li地總尺寸,在方法中賦值

    (function () {

    var clonecount = math.ceil(objsize * 2 / litotalsize); //賦值子元素多少遍

    var clonehtmlnow = , clonehtmlstart = obj.html(); //原始地子元素字符串

    for (var i = 0; i < clonecount; i++) {

    clonehtmlnow += clonehtmlstart;

    }

    obj.append(clonehtmlnow);

    litotalsizeother = (clonecount + 1) * litotalsize; //獲取添加了子元素之后地長度

    })();

    if (opt.dir == left || opt.dir == right) {

    obj.css({ position: relative, z-index: 0 });

    obj.children().css({ position: absolute, z-index: 1 });

    var left = 0;

    obj.children().each(function () {

    $(this).css({ left: left + px, top: 0 });

    left += $(this).outerwidth(true);

    });

    }

    //滾動條地滾動方法

    function scrollchange(dir) {

    if (dir == left || dir == up) {

    obj[scrollevent](0);

    scrollchange = function () {

    scrollsize++;

    if (scrollsize >= litotalsize) scrollsize = 0;

    obj[scrollevent](scrollsize);

    }

    }

    else if (dir == right || dir == down) {

    scrollsizemax = litotalsizeother - objsize;

    obj[scrollevent](scrollsizemax);

    scrollsize = scrollsizemax;

    scrollsizemin = scrollsizemax - litotalsize;

    scrollchange = function () {

    scrollsize--;

    if (scrollsize <= scrollsizemin) scrollsize = scrollsizemax;

    obj[scrollevent](scrollsize);

    }

    }

    };

    scrollchange(opt.dir);

    interval = setinterval(scrollchange, opt.delay);

    obj.children().on(mouseover, function () {

    clearinterval(interval);

    }).on(mouseleave, function () {

    interval = setinterval(scrollchange, opt.delay);

    });

    }

    })(jquery);

    插件地調用:

    代碼如下:

    $(function () {

    $(#guoul1).gyscontentdisplay({ dir: right });

    $(#guoul2).gyscontentdisplay({ dir: left });

    $(#guoul3).gyscontentdisplay({ dir: up });

    $(#guoul4).gyscontentdisplay({ dir: down });

    $(#guoul5).gyscontentdisplay({ dir: right });

    $(#guoul6).gyscontentdisplay({ dir: none });

    })

    更多信息請查看IT技術專欄

    更多信息請查看腳本欄目
    易賢網(wǎng)手機網(wǎng)站地址:自己使用jquery寫的一個無縫滾動的插件

    2026國考·省考課程試聽報名

    • 報班類型
    • 姓名
    • 手機號
    • 驗證碼
    關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
    工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權所有:易賢網(wǎng)