Slides – シンプルで簡単にカスタマイズおよびスタイル設定できる jQuery スライドショー プラグインです。
スライドでは、フェードまたはスライド トランジション効果、画像のフェードインとフェードアウト、画像の事前圧縮、ページネーションの自動生成、ループ、自動再生のカスタマイズ、その他多くのオプションが提供されます。
スライド プラグインを使用すると、スライドをシャッフルし、どのスライド ショーを開始するかを設定できます。豊富な説明書と例が付属しています。
これ以上ナンセンスはやめて、コードを投稿させてください
$(function(){ $("#slides").slidesjs({ play: { active: true, // [boolean] Generate the play and stop buttons. // You cannot use your own buttons. Sorry. effect: "slide", // [string] Can be either "slide" or "fade". interval: , // [number] Time spent on each slide in milliseconds. auto: false, // [boolean] Start playing the slideshow on load. swap: true, // [boolean] show/hide stop and play buttons pauseOnHover: false, // [boolean] pause a playing slideshow on hover restartDelay: // [number] restart delay on inactive slideshow } }); });
フロントデスク:
<!doctype html> <head> <style> /* Prevents slides from flashing */ #slides { display:none; } </style> <script src="http://code.jquery.com/jquery-latest.min.js"></script> <script src="jquery.slides.min.js"></script> <script> $(function(){ $("#slides").slidesjs({ width: , height: }); }); </script> </head> <body> <div id="slides"> <img src="http://placehold.it/x"> <img src="http://placehold.it/x"> <img src="http://placehold.it/x"> <img src="http://placehold.it/x"> <img src="http://placehold.it/x"> </div> </body>
上記の内容は jquery.slides.js に関するすべてのコードです。気に入っていただければ幸いです。