jquery.gridrotator實現響應式圖片展示畫廊效果
本教程將教大家制作一個jQuery響應式圖片展示畫廊效果,所有圖片以網格的形式排列,然後定時隨機翻轉其中某些格子用來切換圖片。這種效果可以用來當做背景或裝飾放在我們的網站上。
jquery.gridrotator是一款非常實用的響應式圖片展示畫廊外掛。這款圖片展示畫廊外掛將圖片像網格一樣排列,然後隨機將某個格子中的圖片翻轉顯示另一張圖片。共有6種效果。
HTML結構:
HTML結構非常簡單。
? 1 2 3 4 5 6 7 <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>
呼叫外掛
? 1 2 3 $(function() { $( '#ri-grid' ).gridrotator(); });
注意別忘了引入jQuery和jquery.gridrotator.js檔案。
可選引數
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 // 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 : []
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69994010/viewspace-2753789/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 標籤實現響應式圖片
- viewpager實現畫廊(一屏多個Fragment)效果ViewpagerFragment
- 使用 RecyclerView 實現 Gallery 畫廊效果,並控制 Item 停留位置View
- JS實現有點炫的圖片展示效果-圖片解體和組合JS
- Android照片牆加強版,使用ViewPager實現畫廊效果AndroidViewpager
- SVG動畫應用-酷炫的圖片展示效果SVG動畫
- asp.net+js方式實現的幻燈圖片效果展示ASP.NETJS
- JavaScript 圖片切換展示效果JavaScript
- [譯] 使用 CSS 網格佈局實現響應式圖片CSS
- jQuery實現圖片尺寸自適應效果jQuery
- 【學習圖片】10.響應式圖片
- 圖片模糊效果實現(RenderScript)
- 響應式專案總結-輪播和響應式圖片
- js實現的響應式導航選單效果JS
- PHP實現圖片轉字元畫PHP字元
- 純CSS3實現圖片展示特效CSSS3特效
- JS實現馬賽克圖片效果JS
- PHP實現水印效果(文字、圖片)PHP
- 滑鼠放在圖片實現高亮效果
- 手風琴方式圖片展示效果詳解
- 模仿bootstrap寫響應式圖片佈局boot
- SDWebImage實現圖片展示、快取、清除快取Web快取
- css3的flex實現的響應式佈局效果CSSS3Flex
- css實現文字和圖片居中效果CSS
- 實現背景圖片的全屏拉伸效果
- canvas實現的圖片放大鏡效果Canvas
- 現代圖片效能最佳化及體驗最佳化指南 - 響應式圖片方案
- 詳解前端響應式佈局、響應式圖片,與自制柵格系統前端
- Vue 響應式實現原理Vue
- 自己實現一個VUE響應式--VUE響應式原理Vue
- javascript實現滑鼠懸浮圖片實現抖動效果JavaScript
- 實現圖片染色效果的三種方式
- 滑鼠懸浮圖片實現翻轉效果
- 滑鼠懸浮圖片實現縮放效果
- HarmonyOS NEXT應用開發之圖片縮放效果實現
- 實現畫布的效果
- 原生JS實現輪播圖--第一章圖片展示JS
- 處理好item點選事件的gallery(畫廊)效果(無bug)事件