이번에는 이미지 드래그 및 이동을 구현하는 jquery 플러그인 jquery.nicescroll과 이미지 드래그 및 이동을 구현하는 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 p {width:12570px;} #boxscroll p 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 p",{touchbehavior:true,cursorcolor:"#FF00FF",cursoropacitymax:0.6,cursorwidth:24,usetransition:true,hwacceleration:true,autohidemode:"hidden"}); }); </script> </head> <body> <p id="boxscroll"> <p> <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" /> </p> </p> </p> </body> </html>
이 기사의 사례를 읽으신 후 방법을 마스터하신 것으로 생각됩니다. 더 흥미로운 정보를 보려면 주목해 주세요. PHP 중국어 웹사이트의 다른 관련 기사를 확인해보세요!
추천 자료:
jQuery를 사용하여 체크박스가 있는 테이블을 구현하는 단계에 대한 자세한 설명
위 내용은 jquery 플러그인 jquery.nicescroll은 이미지 드래그 앤 드롭 변위를 구현합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!