Slides – 是一個簡單的,容易自訂和風格化,的jQuery幻燈片外掛。
Slides提供褪色或幻燈片過渡效果,影像淡入淡出,影像預壓,自動生成分頁,循環,自動播放的自訂等很多選項。
用Slides插件,你可以隨機播放幻燈片,設定那一套您想要開始幻燈片。它附帶充分的說明和範例。
廢話不多說了,直接給大家貼程式碼了
$(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的全部程式碼,希望大家喜歡。