在線演示
這個教程將介紹如何使用純CSS創建一個干淨的幻燈圖片面板。主要想法是在面板中使用背景圖片,然後在點擊標簽後使之動畫。
HTML標簽
HTML主要包括了3個主要部分:radio按鈕和標簽,容器,及其標題,如下:
<section class="cr-container">
<!-- radio buttons and labels -->
<input id="select-img-1" name="radio-set-1" type="radio" class="cr-selector-img-1" checked/>
<label for="select-img-1" class="cr-label-img-1">1</label>
<input id="select-img-2" name="radio-set-1" type="radio" class="cr-selector-img-2" />
<label for="select-img-2" class="cr-label-img-2">2</label>
<input id="select-img-3" name="radio-set-1" type="radio" class="cr-selector-img-3" />
<label for="select-img-3" class="cr-label-img-3">3</label>
<input id="select-img-4" name="radio-set-1" type="radio" class="cr-selector-img-4" />
<label for="select-img-4" class="cr-label-img-4">4</label>
<div class="clr"></div>
<!-- panels -->
<div class="cr-bgimg">
<div>
<span>Slice 1 - Image 1</span>
<span>Slice 1 - Image 2</span>
<span>Slice 1 - Image 3</span>
<span>Slice 1 - Image 4</span>
</div>
<div>
<span>Slice 2 - Image 1</span>
<span>Slice 2 - Image 2</span>
<span>Slice 2 - Image 3</span>
<span>Slice 2 - Image 4</span>
</div>
<div>
<span>Slice 3 - Image 1</span>
<span>Slice 3 - Image 2</span>
<span>Slice 3 - Image 3</span>
<span>Slice 3 - Image 4</span>
</div>
<div>
<span>Slice 4 - Image 1</span>
<span>Slice 4 - Image 2</span>
<span>Slice 4 - Image 3</span>
<span>Slice 4 - Image 4</span>
</div>
</div>
<!-- titles -->
<div class="cr-titles">
<h3>
<span>Serendipity</span>
<span>What you've been dreaming of</span>
</h3>
<h3>
<span>Adventure</span>
<span>Where the fun begins</span>
</h3>
<h3>
<span>Nature</span>
<span>Unforgettable eperiences</span>
</h3>
<h3>
<span>Serenity</span>
<span>When silence touches nature</span>
</h3>
</div>
</section>
CSS樣式
主要的目地是先通過label來隱藏radio按鈕。點擊label後將會使得分開的checkbox或者radio按鈕選擇。給input一個ID,我們可以使用for=idref屬性。
第二我們希望將所有的背景圖片放置正確,第三,我們希望點擊label的時候顯示分開的圖片切割線和標題。
首先,我們設計section樣式,並且給與一個白色邊框及其box陰影
.cr-container{ width: 600px; height: 400px; position:relative; margin: 0 auto; border: 20px solid #fff; box-shadow: 1px 1px 3px rgba(0,0,0,0.1);}
因為我們使用一般的sibling selector來取得正確的圖片塊和標題,我們需要在容器前放置label。我們需要確認他們處於層次的頂端(z-index),並且通過添加一個top maring來將位置拉低
.cr-container label{ font-style:italic; width:150px; height: 30px; cursor: pointer; color:#fff; line-height: 32px; font-size: 24px; float:left; position: relative; margin-top:350px; z-index: 1000;}
下面我們通過添加小圈來美化label。我們添加一個虛假元素並且居中:
.cr-container label:before{ content:''; width: 34px; height: 34px; background: rgba(130,195,217,0.9); position: absolute; left: 50%; margin-left: -17px; border-radius: 50%; box-shadow: 0px 0px 0px 4px rgba(255,255,255,0.3); z-index:-1;}
為了創建一個分割我們需要使用一些小技巧。我們為label來創建另外一個虛假元素並且擴展到整個面板。使用漸變,我們將直線向上淡出:
.cr-container label:after{ width: 1px; height: 400px; content: ''; background: linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); position: absolute; bottom: -20px; right: 0px;}
最後面板需要去除那個直線,所以設置為寬度為0:
.cr-container label.cr-label-img-4:after{ width:0px;}
現在,我們將處理label,將input隱藏:
.cr-container input{ display:none;}
不管我們是否點擊label,分開的輸入都會被checked。現在我們將使用一個統一的sibling屬性選擇器來處理分開的label。因此我們修改選擇的label顏色:
.cr-container input.cr-selector-img-1:checked ~ label.cr-label-img-1,.cr-container input.cr-selector-img-2:checked ~ label.cr-label-img-2,.cr-container input.cr-selector-img-3:checked ~ label.cr-label-img-3,.cr-container input.cr-selector-img-4:checked ~ label.cr-label-img-4{ color: #68abc2;}
同時我們修改背景顏色和box陰影:
.cr-container input.cr-selector-img-1:checked ~ label.cr-label-img-1:before,.cr-container input.cr-selector-img-2:checked ~ label.cr-label-img-2:before,.cr-container input.cr-selector-img-3:checked ~ label.cr-label-img-3:before,.cr-container input.cr-selector-img-4:checked ~ label.cr-label-img-4:before{ background:#fff; box-shadow: 0px 0px 0px 4px rgba(104,171,194,0.6);}
圖片面板的容器將會占據所有寬度並且絕對定位。這個容器將會在稍後使用為了將圖片設置為選擇的圖片。我們需要這樣做來使得圖片缺省可以顯示。因此我們將添加已經背景屬性:
.cr-bgimg{ width: 600px; height: 400px; position: absolute; left: 0px; top: 0px; z-index: 1; background-repeat: no-repeat; background-position: 0 0;}
因為我們有4個面板/圖片,一個面板將有150px的寬度(600除4)。面板會左漂移,我們隱藏overflow因為我們不想看到塊出現:
.cr-bgimg div{ width:150px; height: 100%; position: relative; float: left; overflow:hidden; background-repeat: no-repeat;}
每一個顯示塊都是初始絕對定位,他們將通過left:-150px來被隱藏:
.cr-bgimg div span{ position: absolute; width: 100%; height: 100%; top: 0px; left: -150px; z-index: 2; text-indent: -9000px;}
接下來是背景圖片容器和單獨的圖片顯示塊:
.cr-container input.cr-selector-img-1:checked ~ .cr-bgimg,.cr-bgimg div span:nth-child(1){ background-image: url(../images/1.jpg);}.cr-container input.cr-selector-img-2:checked ~ .cr-bgimg,.cr-bgimg div span:nth-child(2){ background-image: url(../images/2.jpg);}.cr-container input.cr-selector-img-3:checked ~ .cr-bgimg,.cr-bgimg div span:nth-child(3){ background-image: url(../images/3.jpg);}.cr-container input.cr-selector-img-4