還記得筆者曾經寫過一篇仿 Yahoo 切換式兩格圖片廣告嗎?因為原本只是針對一次兩格來做效果,所以就有蠻多網友問說怎樣一次顯示超過兩格呢?剛好趁著 Yahoo! 奇摩新聞原本的效果也因為改版而有一點點不同
所以筆者此次就教各位如何寫個能 N 格切換的效果。
HTML 的部份簡單一點點了:
檢視原始碼 HTML
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <body> <div class="abgne-yahoo-carousel"> <h3>jQuery 熱門外掛</h3> <span class="page"></span> <div class="btn"> <a href="#" class="prev">Prev</a> <a href="#" class="next">Next</a> </div> <div class="frame"> <ul> <li> <a class="thumb" href="#"> <img title="Android" src="images/a.jpg"/> </a> </li> ~以下省略~ </ul> </div> </div> </body> |
接著一樣是利用 CSS 來裝飾:
檢視原始碼 CSS
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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | .abgne-yahoo-carousel { width: 830px; height: 230px; padding: 10px; border: 1px solid #ccc; position: relative; } .abgne-yahoo-carousel * { margin: 0; padding: 0; } .abgne-yahoo-carousel ul, .abgne-yahoo-carousel li { list-style: none; } .abgne-yahoo-carousel a img { border: none; width: 198px; } .abgne-yahoo-carousel h3 { font-size: 18px; height: 30px; } .abgne-yahoo-carousel .page { position: absolute; top: 12px; right: 80px; } .abgne-yahoo-carousel .btn { position: absolute; top: 10px; right: 5px; height: 20px; } .abgne-yahoo-carousel .btn a { width: 31px; height: 24px; float: left; text-indent: -9999px; } .abgne-yahoo-carousel .btn a.prev { background: url(images/btn.gif) no-repeat 0 -42px; } .abgne-yahoo-carousel .btn a.next { background: url(images/btn.gif) no-repeat 0 0; } .abgne-yahoo-carousel .frame { position: relative; overflow: hidden; width: 830px; /* (li 的寬度 + li 的邊框寬度 * 2 ) * 一次要顯示的數量 + li 的右邊界 * (一次要顯示的數量 - 1) */ height: 200px; } .abgne-yahoo-carousel ul { width: 99999px; position: absolute; } .abgne-yahoo-carousel li { float: left; width: 198px; height: 200px; position: relative; margin-right: 10px; border: 1px solid #333; } .abgne-yahoo-carousel li .thumb, .abgne-yahoo-carousel li .ovrly, .abgne-yahoo-carousel li h3 { position: absolute; } .abgne-yahoo-carousel li .ovrly, .abgne-yahoo-carousel li h3 { width: 100%; height: 32px; line-height: 32px; text-align: center; bottom: 0; } .abgne-yahoo-carousel li .ovrly { background: #000; } .abgne-yahoo-carousel li h3 a { color: #fff; } .abgne-yahoo-carousel li h3 a:hover { color: #f90; } |
基本上當套用上 CSS 後就能看到 9 成的畫面了:
那...jQuery 只要把控制切換及移動的功能補上就可以囉:
檢視原始碼 JavaScript
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 | $(function(){ $('.abgne-yahoo-carousel').each(function(){ // 先取得相關的元素及寬度等資料 var $this = $(this), $page = $this.find('.page'), $btn = $this.find('.btn'), _frameWidth = $this.find('.frame').width(), $carousel = $this.find('ul'), $items = $carousel.find('li'), _itemLength = $items.length, _set = Math.ceil(_frameWidth / $items.outerWidth(true)), _count = Math.ceil(_itemLength / _set), _width = _set * $items.outerWidth(true) * -1, _speed = 400, _opacity = 0.75, _index = 0; // 用來顯示目前已顯示及總資料筆數資訊 $page.html('1 - ' + (_set < _itemLength ? _set : _itemLength) + ' / ' + _itemLength); // 幫每一個 li 加上標題及遮罩 $items.each(function(){ var $this = $(this), _href = $this.find('a').attr('href'), _title = $this.find('img').attr('title'); $this.append('<div class="ovrly"></div>' + '<h3>' + '<a href="' + _href + '" alt="' + _title + '" title="' + _title + '">' + _title + '</a>' + '</h3>').find('.ovrly').css('opacity', _opacity); }); // 當按了上下頁的按鈕時 $btn.find('.prev, .next').click(function(e){ // 計算要顯示第幾組 _index = Math.floor((e.target.className == 'prev' ? _index - 1 + _count : _index + 1) % _count); var _lastNum = _set * (_index + 1); $page.html((_set * _index + 1) + ' - ' + (_lastNum < _itemLength ? _lastNum : _itemLength) + ' / ' + _itemLength); // 進行動畫 $carousel.stop().animate({ left: _index * _width }, _speed); e.preventDefault(); }).focus(function(){ this.blur(); }); }) }); |
而程式會透過 li 及 .frame 的寬度來計算判斷一次要顯示幾個:
檢視原始碼 Text
1 | (li 的寬度 + li 的邊框寬度 * 2 ) * 一次要顯示的數量 + li 的右邊界 * (一次要顯示的數量 - 1) |
所以在範例 2 中只要在 CSS 的部份額外多了一次顯示 3 個的設定:
檢視原始碼 CSS
1 2 3 | .demo2, .demo2 .frame { width: 620px; /* (li 的寬度 + li 的邊框寬度 * 2 ) * 一次要顯示的數量 + li 的右邊界 * (一次要顯示的數量 - 1) */ } |
接著就能在不改程式的情況下一次產生多組不同顯示個數的效果囉。
男丁,你好!!
想問一下,我找到的就像這個,都是依css去固定寬高而去算需滑動多少。
但最近我接觸要開發手機或pad版的網頁,很多都必需用百分比去製作。
我想了解,這個是否有辨法改成用百分比去算呀!?
謝謝!!
就算是百分比, 在顯示時其實也是有寬度了, 也許你可以在每次移動前都抓接下來要移動的寬度
請問可以變成兩排嗎
多加一排div
但數量到16後會出現空白頁
要兩排的話, 可能得修改 html 及 css, 但基本上是 ok 的
另外我自己試著加到 20 都能正常切換, 所以需要看到你的檔案才能知道你的問題在那
有沒有方法可以改為auto...
加個計時器就能讓它自動的播放執行了。
不好意思,請問一下:
我在本機端的WAMP預覽原始檔案,目錄也都一致,
但是每一張圖的MASK上面連結都會在狀態列顯示"undefined",
這是哪裡的設定有問題呢:?
一定得改成樓上那位朋友的 $a = $this.find('a'),後
再把href的_href = $a.attr('href'),才行囉?
你先試看看,這問題我文章中的程式已經修正過了,理論上若是結構不變的話,是沒有問題的。
若還是有問題,可能就得看你的檔案內容了。
新手,這怎麼加入計時器,請幫忙,謝謝!
使用 setTimeout() 即可~
男丁格爾您好^^
我載點不能下載耶>"<
近日內會全面更新載點, 你可以先連到該範例網頁後檢視原始碼。
想請教您若是與php做結合的話,因如何去控制頁數呢?
因為現在做到可以自動生成...,但卻無法顯示總頁數及1-?,所以連prev, next 都無法動作了。
不好意思,麻煩您了,謝謝。
可以把你用 php 輸出後的 html 原始碼嗎?要看看你的輸出內容為何才知道問題在那!
老師,請問一下這個範例是一次移動四張圖片,如果要改成一次移動一張圖片 我該從哪邊去修改啊?
你是要一次顯示 4 張但移動是一張一張移動嗎?
通告: jQuery 教學 – 動態廣告輪播 – 仿 Yahoo 切換式 N 格圖片廣告 | 【飛肯設計學苑】教學與分享