ホームページ  >  記事  >  ウェブフロントエンド  >  jquery.gridrotator は応答性の高い画像表示ギャラリーを実装します。

jquery.gridrotator は応答性の高い画像表示ギャラリーを実装します。

WBOY
WBOYオリジナル
2016-05-16 15:53:361239ブラウズ

jquery.gridrotator は、非常に実用的な応答性の高い画像表示ギャラリー プラグインです。この画像表示ギャラリープラグインは、画像をグリッド状に配置し、グリッド内の画像をランダムに反転して別の画像を表示します。エフェクトは全部で6つあります。

HTML 構造:

HTML の構造は非常にシンプルです。

<div id="ri-grid" class="ri-grid ri-grid-size-1 ri-shadow">
  <ul>
    <li><a href="#"><img src="images/medium/1.jpg" alt="Whatever works"/></a></li>
    <li><a href="#"><img src="images/medium/2.jpg" alt="Anything else"/></a></li>
    <!-- ... -->
  </ul>
</div>

プラグインの呼び出し

$(function() {     
  $( '#ri-grid' ).gridrotator();
});

jQuery ファイルと jquery.gridrotator.js ファイルを忘れずに導入してください。
オプションのパラメータ

// number of rows
rows      : 4,
 
// number of columns 
columns     : 10,
 
// rows/columns for different screen widths
// i.e. w768 is for screens smaller than 768 pixels
w1024      : {
  rows  : 3,
  columns : 8
},
 
w768      : {
  rows  : 3,
  columns : 7
},
 
w480      : {
  rows  : 3,
  columns : 5
},
 
w320      : {
  rows  : 2,
  columns : 4
},
 
w240      : {
  rows  : 2,
  columns : 3
},
 
// step: number of items that are replaced at the same time
// random || [some number]
// note: for performance issues, the number should not be > options.maxStep
step      : 'random',
maxStep     : 3,
 
// prevent user to click the items
preventClick  : true,
 
// animation type
// showHide || fadeInOut || slideLeft || 
// slideRight || slideTop || slideBottom || 
// rotateLeft || rotateRight || rotateTop || 
// rotateBottom || scale || rotate3d || 
// rotateLeftScale || rotateRightScale || 
// rotateTopScale || rotateBottomScale || random
animType    : 'random',
 
// animation speed
animSpeed    : 500,
 
// animation easings
animEasingOut  : 'linear',
animEasingIn  : 'linear',
 
// the item(s) will be replaced every 3 seconds
// note: for performance issues, the time "can't" be < 300 ms
interval    : 3000,
// if false the animations will not start
// use false if onhover is true for example
slideshow    : true,
// if true the items will switch when hovered
onhover   : false,
// ids of elements that shouldn't change
nochange    : []

グリッド サイズを定義するときは、すべての画像が一度にグリッドに表示されるわけではないことに注意してください。たとえば、50 枚の画像があり、4 行 5 列を定義した場合、20 枚の画像がグリッドに表示され、残りの 30 枚の画像は画像の反転と切り替えに使用されます。

以上がこの記事の全内容です。皆さんに気に入っていただければ幸いです。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。