이 기사의 예에서는 스크롤 막대 없이 이미지의 왼쪽 및 오른쪽 드래그를 구현하는 jquery 플러그인 jquery.nicescroll의 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
여기에서는 스크롤 막대 없이 왼쪽 및 오른쪽 그림을 드래그하는 특수 효과를 소개합니다. 이 효과는 여러 그림을 함께 결합하여 형성됩니다. 플러그인은 드래그하는 동안 스크롤 막대가 나타나지 않습니다. 이 효과가 필요한 경우 아래 상자의 코드를 참조하세요.
런닝 효과 스크린샷은 다음과 같습니다.
구체적인 코드는 다음과 같습니다.
<!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="jquery-1.6.2.min.js"></script> <script src="http://xiazai.jb51.net/201508/yuanma/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://files.jb51.net/file_images/article/201508/2015810124458663.jpg" width="1257" height="313" onmousedown="return false" /> <img src="http://files.jb51.net/file_images/article/201508/2015810124458663.jpg" width="1257" height="313" onmousedown="return false" /> <img src="http://files.jb51.net/file_images/article/201508/2015810124458663.jpg" width="1257" height="313" onmousedown="return false" /> <img src="http://files.jb51.net/file_images/article/201508/2015810124458663.jpg" width="1257" height="313" onmousedown="return false" /> <img src="http://files.jb51.net/file_images/article/201508/2015810124458663.jpg" width="1257" height="313" onmousedown="return false" /> <img src="http://files.jb51.net/file_images/article/201508/2015810124458663.jpg" width="1257" height="313" onmousedown="return false" /> </div> </div> </div> </body> </html>
이 기사가 모든 사람의 jquery 프로그래밍 설계에 도움이 되기를 바랍니다.