首頁 > web前端 > js教程 > 實例程式碼詳解jquery.slides.js_jquery

實例程式碼詳解jquery.slides.js_jquery

WBOY
發布: 2016-05-16 15:32:08
原創
1234 人瀏覽過

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的全部程式碼,希望大家喜歡。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板