当前位置:首页 > 网页特效 > 图片特效 >

jquery.nicescroll实现图片无滚动条左右拖拽

时间:2014-03-12 08:38 来源:互联网 作者:源码搜藏 收藏 推荐

运行代码 保存代码 复制代码 提示:您可以先修改部分代码再运行,保存代码功能在Firefox下无效。
  • jQuery图片左右拖拽特效,无滚动条,将多张图片组合在一起形成的效果,插件使用的是jquery.nicescroll.js,拖动过程中不会出现滚动条,这样更美观了一些,若需要此效果,可参见下边框中的代码。
  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>jquery.nicescroll无滚动条左右拖拽</title>
    <style>
    *{ margin:0; padding:0; list-style:none;}
    img{ border:none;}
    #boxscroll {height: 313px;width: 900px;margin:0 auto;overflow: auto;}
    #boxscroll div {width:12570px;}
    #boxscroll div img {float:left;}
    .row {background:#FFFFCC;}
    .row2 {background:#66CCFF;}
    </style>
    <script src="http://www.codefans.net/ajaxjs/jquery-1.6.2.min.js"></script>
    <script src="http://www.codefans.net/jscss/demoimg/201403/jquery.nicescroll.js"></script>
    <script>
      $(document).ready(function() {
        var nicesx = $("#boxscroll").niceScroll("#boxscroll div",{touchbehavior:true,cursorcolor:"#FF00FF",cursoropacitymax:0.6,cursorwidth:24,usetransition:true,hwacceleration:true,autohidemode:"hidden"});
      });
    </script>
    </head>
    <body>
    <div id="boxscroll">
      <div>
      <img src="http://www.codefans.net/jscss/demoimg/201403/zzsc.jpg" width="1257" height="313" onmousedown="return false" />
      <img src="http://www.codefans.net/jscss/demoimg/201403/zzsc.jpg" width="1257" height="313" onmousedown="return false" />
      <img src="http://www.codefans.net/jscss/demoimg/201403/zzsc.jpg" width="1257" height="313" onmousedown="return false" />
      <img src="http://www.codefans.net/jscss/demoimg/201403/zzsc.jpg" width="1257" height="313" onmousedown="return false" />
      <img src="http://www.codefans.net/jscss/demoimg/201403/zzsc.jpg" width="1257" height="313" onmousedown="return false" />
      <img src="http://www.codefans.net/jscss/demoimg/201403/zzsc.jpg" width="1257" height="313" onmousedown="return false" />
     </div>
    </div>
    </div>
    </body>
    </html>

由源码搜藏网整理,转载请注明出处https://www.codesocang.com/tx-pic/6939.html

图片特效下载排行

最新文章