HTML5 CSS3專題 純CSS打造相簿效果

來源:互聯網
上載者:User

標籤:html5   css3   相簿   

轉載請標明出處:http://blog.csdn.net/lmj623565791/article/details/30993277

今天偶然發現電腦裡面還有這樣的一個例子,感覺效果還不錯,不記得啥時候下載的了,也好久沒上w3cfuns了,懷念學習前台的日子,給大家分享下。


效果是不是還是很不錯的,最主要的是沒有使用一行js,這才是亮點。

先看html檔案:

<body><div id="gallery">    <h1>純CSS3相簿效果</h1>    <ul>        <li>            <span class="touch"><img src="images/pic1.jpg"/></span>            <div style="display: block;">                <img src="images/pic1.jpg"/>            </div>        </li>        <li>            <span><img src="images/pic2.jpg"/></span>            <div>                <img src="images/pic2.jpg"/>            </div>        </li>        <li>            <span><img src="images/pic3.jpg"/></span>            <div>                <img src="images/pic3.jpg"/>            </div>        </li>        <li>            <span><img src="images/pic4.jpg"/></span>            <div>                <img src="images/pic4.jpg"/>            </div>        </li>        <li>            <span><img src="images/pic5.jpg"/></span>            <div>                <img src="images/pic5.jpg"/>            </div>        </li>    </ul>    <div class="clearfix"></div></div></body>

簡單描述一下:

1、ul 中 li決定了照片的個數

2、ul使用樣式float:right,width:140px;使得顯示在相簿的右側地區

3、li的float:left,使得li可以左浮動;li中存放大圖的div,position為absolute會根據div#gallary進行定位,預設只有第一個顯示

4、當滑鼠移動到li上時,改變li span img的透明度和li div的display將大圖顯示


接下來就是css檔案:

<style type="text/css">        body        {            font-family: "微軟雅黑";        }        #gallery        {            width: 700px;            position: relative;            margin: 20px auto 0;            background-color: #000;            min-height: 400px;            padding: 20px;        }            /*標題*/        #gallery h1        {            color: #fff;            font-size: 2em;            font-weight: bold;        }        #gallery ul        {            width: 140px;            float: right;            margin: 10px 0 20px;        }        #gallery ul li        {            float: left;            margin: 20px 8px 0 0;        }        #gallery ul li span        {            display: block;            position: relative;            width: 60px;            height: 80px;            border: 1px solid #fff;            -moz-border-radius: 4px;            -webkit-border-radius: 4px;            -ms-border-radius: 4px;            -o-border-radius: 4px;            border-radius: 4px;            overflow: hidden;        }        #gallery  ul li span img        {            position: relative;            top: -200px;            left: -100px;            filter: alpha(opacity=30);            opacity: 0.3;        }        #gallery ul li span.touch img, #gallery ul li:hover span img        {            opacity: 1;            filter: alpha(opacity=100);        }        #gallery ul li:hover div        {            display: block;        }        #gallery ul li div  img        {            width: 460px;            height: 288px;        }        #gallery ul li div        {            display: none;            position: absolute;            top: 100px;            left: 30px;            border: 5px solid #fff;        }        .clearfix        {            clear: both;        }    </style>

css中沒有什麼複雜的樣式,就不做描述了。此外html中我引入了一個重設樣式的css , reset.css ,大家也可以使用自己習慣的重設樣式:

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend{margin: 0;padding: 0;font-size: 100%;border: 0;outline: 0;background: transparent;}ol, ul {list-style: none;}blockquote, q {quotes: none;}:focus {outline: 0;}table {border-collapse: collapse;border-spacing: 0;}


源碼點擊下載

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.