[WebTech #72] CSS > 4. CSS 範例 > 4-5 圖形處理 > 4-5-1 縮圖(Thumbnails)
喜歡拍照的朋友,一定會想要在一個網頁內,顯示越多圖片越好。那麼,您就不能錯過現在正要介紹的功能:縮圖(Thumbnails)。
用 CSS 呈現縮圖是相當方便、且效果多元的。本篇分享的縮圖效果有:一般、動畫(含:縮放、糊化、加註...)等效果。讓我們現在馬上就來看看吧!
一般縮圖:
(1) http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/perfectly-rotate-and-mask-thumbnails-with-css3/
(2) http://webdesignerwall.com/tutorials/creating-a-modern-lightbox-with-css3-and-javascript
(3) http://webdesignerwall.com/tutorials/css3-image-styles
動畫縮圖(縮放):
(1) http://tutorialzine.com/2012/05/growing-thumbnails-portfolio-jquery-css3/
(2) http://www.tangledindesign.com/blog/enhancing-thumb-galleries-css3-transitions-transforms/
(3) http://tympanus.net/codrops/2012/01/04/thumbnail-proximity-effect/
(4) http://inspectelement.com/tutorials/create-a-css3-image-gallery-with-a-3d-lightbox-animation/
動畫縮圖(糊化,Blur):
(1) http://www.red-team-design.com/css-filter-effects-in-action
動畫縮圖(加註,Annotation):
(1) http://pehaa.com/2012/02/create-your-portfolio-gallery-using-html5-canvas-tutorial/
(2) http://tympanus.net/codrops/2011/12/26/css3-lightbox/
(3) http://tympanus.net/codrops/2012/01/09/filter-functionality-with-css3/
其它縮圖效果:
(1) http://tympanus.net/codrops/2012/07/20/3d-flipping-circle-with-css3-and-jquery/
底下這個雖然不算縮圖,不過它與製作縮圖所用的技巧差不多,因此我就把它放在這裡了:
* 使用 CSS 製作「便利貼」: http://net.tutsplus.com/tutorials/html-css-techniques/create-a-sticky-note-effect-in-5-easy-steps-with-css3-and-html5/
---
最棒的 CSS Selector 或 Properties 線上參考手冊:
(進入後,Selector 在中央,Properties 在左下選單)
http://www.w3schools.com/cssref/css_selectors.asp
同時也有10000部Youtube影片,追蹤數超過2,910的網紅コバにゃんチャンネル,也在其Youtube影片中提到,...
「css rotate animation」的推薦目錄:
- 關於css rotate animation 在 紀老師程式教學網 Facebook 的最佳解答
- 關於css rotate animation 在 紀老師程式教學網 Facebook 的最佳解答
- 關於css rotate animation 在 コバにゃんチャンネル Youtube 的精選貼文
- 關於css rotate animation 在 大象中醫 Youtube 的最讚貼文
- 關於css rotate animation 在 大象中醫 Youtube 的最佳貼文
- 關於css rotate animation 在 CSS3 Rotate Animation - Stack Overflow 的評價
- 關於css rotate animation 在 CSS3 Animation | Summer。桑莫。夏天 的評價
- 關於css rotate animation 在 CSS animation, Safari problem - GitHub 的評價
css rotate animation 在 紀老師程式教學網 Facebook 的最佳解答
[WebTech #61] CSS > 4. CSS 範例 > 4-1 文字相關實例
CSS 事實上就是「匹配規則(Selector)」+「套用屬性(Properties)」而已!如果您在 [WebTech #59] 看過所有 30 種常見的匹配規則,也在 [WebTech #60] 看完了所有可供套用的屬性,那麼您的 CSS 語法已經全部學完了!
接下來想要精通 CSS,只有看大量的範例了!看的越多,您越能了解剛剛那兩篇學的「匹配規則」與「套用屬性」,到底要用在哪個場合上。所以,接下來我將會分門別類地提供大量的 CSS 範例給各位參考。這些範例大多附有「解說」、「原始碼」、「線上示範」三樣東西。您只要點進去,看完解說,把原始碼貼到我今天推薦的 CodePen 上去試試看,或者直接看線上範例即可。需要的話參考一下我在每篇最下方提供的「CSS Selector & Properties 參考手冊」,刷新記憶,相信您的 CSS 一定可以學得很好!
首先上場的是「文字相關屬性」。坐穩囉!我們就開始吧!
文字相關變化:
- 會旋轉的文字: http://tympanus.net/codrops/2012/04/17/rotating-words-with-css-animations/
- 跑馬燈: http://www.hongkiat.com/blog/css3-animation-advanced-marquee/
- 項目編號: http://www.red-team-design.com/css3-ordered-list-styles
- 圖說文字(游標移上去,會額外出現的說明文字)
* 文字型: http://webdesign.tutsplus.com/tutorials/site-elements/how-to-create-link-tooltips-using-css3-and-jquery/
* 圖片型: http://webdesign.tutsplus.com/tutorials/how-to-create-script-free-css3-tooltips/
最棒的 CSS Selector 或 Properties 線上參考手冊:
(進入後,Selector 在中央,Properties 在左下選單)
http://www.w3schools.com/cssref/css_selectors.asp
css rotate animation 在 コバにゃんチャンネル Youtube 的精選貼文
css rotate animation 在 大象中醫 Youtube 的最讚貼文
css rotate animation 在 大象中醫 Youtube 的最佳貼文
css rotate animation 在 CSS3 Animation | Summer。桑莫。夏天 的推薦與評價
.cube { width: 100px; height: 100px; background: #41d2f2; animation: move 2s infinite; } @keyframes move { 0% { transform: translate3d(0, 0, ... ... <看更多>
css rotate animation 在 CSS animation, Safari problem - GitHub 的推薦與評價
CSS animation, Safari problem. */. @keyframes makeVisible {. from {transform: rotate(0deg);}. to {transform: rotate(360deg);}. }. ... <看更多>
css rotate animation 在 CSS3 Rotate Animation - Stack Overflow 的推薦與評價
... <看更多>
相關內容