今回は、画像のドラッグと移動を実装するための jquery プラグイン jquery.nicescroll と、画像のドラッグと移動を実装するための jquery プラグイン jquery.nicescroll を紹介します。 注意事項は何ですか? では、実際のケースを見てみましょう。見てください。
ここでは、スクロール バーを使用せずに 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 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>
jQueryを使用してチェックボックス付きのテーブルを実装する手順の詳細な説明
以上がjquery プラグイン jquery.nicescroll は画像のドラッグ アンド ドロップの変位を実装しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。