- 相關(guān)推薦
CSS+p實(shí)現(xiàn)懸浮效果的實(shí)例
導(dǎo)語(yǔ):Css+p,是現(xiàn)在網(wǎng)頁(yè)設(shè)計(jì)必不可少的部分,它可以做出各種各樣的效果。以下的是百分網(wǎng)小編為大家搜集的CSS+p實(shí)現(xiàn)的懸浮效果的實(shí)例,希望對(duì)你有所幫助。
代碼如下:
<p class="side-bar">
<a href="#" class="icon-qq">QQ在線咨詢</a>
<a href="#" class="icon-chat">微信<p class="chat-tips"><i></i>
<img style="width:138px;height:138px;" src="helloweba.jpg" _fcksavedurl=""helloweba.jpg"" alt="微信訂閱號(hào)"></p></a>
<a target="_blank" href="" class="icon-blog">微博</a>
<a href=<a href="http://www.jb51.net">http://www.jb51.net</a> class="icon-mail">mail</a>
</p>
CSS
我們使用CSS來(lái)完成浮動(dòng)即鼠標(biāo)滑向彈出效果。我們準(zhǔn)備一張圖片right_bg.png,包含了幾個(gè)內(nèi)容的圖標(biāo),然后通過(guò)background-position各個(gè)圖標(biāo)對(duì)應(yīng)的a內(nèi)容。我們使用position: fixed以及設(shè)置bottom和right值將.side-bar固定在右下角,這樣無(wú)論頁(yè)面如何滾動(dòng),.side-bar將一直在右下角位置不變。這里需要提下ie6下fixed效果需要單獨(dú)處理,但本文不做詳解,放棄ie6吧。
代碼如下:
.side-bar a,.chat-tips i {background: url(right_bg.png) no-repeat;}
.side-bar {width: 66px;position: fixed;bottom: 20px;right: 25px;font-size: 0;line-height: 0;z-index: 100;}
.side-bar a {width: 66px;height: 66px;display: inline-block;background-color: #ddd;margin-bottom: 2px;}
.side-bar a:hover {background-color: #669fdd;}
.side-bar .icon-qq {background-position: 0 -62px;}
.side-bar .icon-chat {background-position: 0 -130px;position: relative;}
.side-bar .icon-blog {background-position: 0 -198px;}
.side-bar .icon-mail {background-position: 0 -266px;}
這里還有個(gè)鼠標(biāo)滑向微信圖標(biāo)的效果,當(dāng)鼠標(biāo)hover時(shí),.chat-tips的display屬性設(shè)置為block,并且設(shè)置定位位置,一下代碼還包含了一個(gè)箭頭的CSS寫法:
代碼如下:
.side-bar .icon-chat:hover .chat-tips {display: block;}
.chat-tips {padding: 20px;border: 1px solid #d1d2d6;position: absolute;right: 78px;top: -55px;background-color: #fff;display: none;}
.chat-tips i {width: 9px;height: 16px;display: inline-block;position: absolute;right: -9px;top: 80px;background-position:-88px -350px;}
.chat-tips img {width: 138px;height: 138px;}
【CSS+p實(shí)現(xiàn)懸浮效果的實(shí)例】相關(guān)文章:
css實(shí)現(xiàn)的tab切換效果實(shí)例09-16
php中實(shí)現(xiàn)回刪功能實(shí)例10-03
C語(yǔ)言實(shí)現(xiàn)歸并排序算法實(shí)例09-18
C#實(shí)現(xiàn)協(xié)同過(guò)濾算法的實(shí)例代碼06-19
如何實(shí)現(xiàn)JavaScript的DIV塊來(lái)回滾動(dòng)效果06-30
JavaScript簡(jiǎn)單實(shí)現(xiàn)放大鏡效果代碼09-24
如何使用javascript實(shí)現(xiàn)瀑布流及效果加載06-17
C語(yǔ)言中實(shí)現(xiàn)“17進(jìn)制”轉(zhuǎn)“10進(jìn)制”代碼(實(shí)例)07-06