中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

css3怎么實(shí)現(xiàn)頂部分享按鈕

這篇文章主要講解了“css3怎么實(shí)現(xiàn)頂部分享按鈕”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“css3怎么實(shí)現(xiàn)頂部分享按鈕”吧!

我們提供的服務(wù)有:成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、成都外貿(mào)網(wǎng)站建設(shè)公司、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、虎林ssl等。為上1000+企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的虎林網(wǎng)站制作公司

今天要分享一款純CSS3實(shí)現(xiàn)的社會(huì)化分享按鈕,它放置在網(wǎng)頁(yè)的頂部,你可以選擇將它固定在網(wǎng)頁(yè)頂部,這樣對(duì)用戶分享內(nèi)容就十分方便。這些社會(huì)化分享按鈕的圖標(biāo)文件來(lái)自google和bootstrap的字體文件,包含了個(gè)大社交網(wǎng)站的logo圖標(biāo),可以先來(lái)看看效果圖:

css3怎么實(shí)現(xiàn)頂部分享按鈕

HTML結(jié)構(gòu)代碼

代碼如下:


<div class="social">
   <span class="line"></span>
   <ul>
       <li class="facebook">
           <a href="#" target="_blank">
               <i class="fa fa-facebook fa-2x"></i>
           </a>
       </li>
       <li class="twitter">
           <a href="#" target="_blank">
               <i class="fa fa-twitter fa-2x"></i>
           </a>
       </li>
       <li class="codepen">
           <a href="#" target="_blank"><img src="http://www.gettyicons.com/free-icons/222/simple/png/256/codepen_256.png" alt="CODEPEN" width="48" height="48"></a>
       </li>
       <li class="youtube">
           <a href="#" target="_blank">
               <i class="fa fa-youtube fa-2x"></i>
           </a>
       </li>
       <li class="instagram">
           <a href="#" target="_blank">
               <i class="fa fa-instagram fa-2x"></i>
           </a>
       </li>
       <li class="pinterest">
           <a href="#" target="_blank">
               <i class="fa fa-pinterest fa-2x"></i>
           </a>
       </li>
       <li class="github">
           <a href="#" target="_blank">
               <i class="fa fa-github fa-2x"></i>
           </a>
       </li>
       <li class="flickr">
           <a href="#" target="_blank">
               <i class="fa fa-flickr fa-2x"></i>
           </a>
       </li>
       <li class="linkedin">
           <a href="#" target="_blank">
               <i class="fa fa-linkedin fa-2x"></i>
           </a>
       </li>
   </ul>
</div>

這里主要是利用了ul li列表結(jié)構(gòu),么一個(gè)li都定義了相應(yīng)的class,比如第一個(gè)定義了class="facebook",在之后的css中,將會(huì)對(duì)facebook類進(jìn)行樣式定義,這樣做會(huì)非常方便。

然后再看看CSS代碼,也比較簡(jiǎn)單:

代碼如下:


@import url(http://fonts.googleapis.com/css?family=Quicksand:300,400);
@import url(http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);

先是引入了google和bootstrap的字體文件,下面可以利用這兩個(gè)文件來(lái)渲染按鈕的小圖標(biāo)。

代碼如下:


.social .line {
   position: absolute;
   top: 0; left: 0px;
   width: 100%; height: 5px;
   background: #fced00;
   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
   z-index: 0;
}
.social ul {
   position: fixed;
   left: 50%; margin-left: -216px;
   list-style: none;
   color: #000;
}
.social ul li {
   float: left;
}
.social ul li a {
   position: relative;
   float: left;
   background: #fff000;
   width: 48px; height: 48px;
   text-align: center;
   color: #000;
   padding: 0 0 30px 0;
}
.social ul li a:hover {
   color: #fff;
}
.fa-facebook, .fa-twitter, .fa-youtube, .fa-instagram, .fa-pinterest, .fa-github, .fa-flickr, .fa-linkedin {
   padding: 10px 0 0 0;
}

上面這段主要定義了整個(gè)按鈕控件的整體外觀,包括每一個(gè)按鈕項(xiàng)的邊距之類的設(shè)置。

代碼如下:


.social ul li.facebook a:hover {
   background: #3b5998;
}
.social ul li.twitter a:hover {
   background: #44ccf6;
}
.social ul li.codepen a:hover {
   background: #cccccc;
}
.social ul li.youtube a:hover {
   background: #da2d2e;
}
.social ul li.instagram a:hover {
   background: #66269e;
}
.social ul li.pinterest a:hover {
   background: #c3042b;
}
.social ul li.github a:hover {
   background: #000000;
}
.social ul li.flickr a:hover {
   background: #72858c;
}
.social ul li.linkedin a:hover {
   background: #1c66c2;
}

感謝各位的閱讀,以上就是“css3怎么實(shí)現(xiàn)頂部分享按鈕”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)css3怎么實(shí)現(xiàn)頂部分享按鈕這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

本文名稱:css3怎么實(shí)現(xiàn)頂部分享按鈕
地址分享:http://www.rwnh.cn/article6/ippjog.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)自適應(yīng)網(wǎng)站、網(wǎng)站導(dǎo)航關(guān)鍵詞優(yōu)化、電子商務(wù)、響應(yīng)式網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都做網(wǎng)站
岳阳市| 禹城市| 全椒县| 南皮县| 信宜市| 巴林左旗| 沂南县| 鸡西市| 海淀区| 通化市| 荆州市| 柳江县| 福安市| 通化市| 富锦市| 迭部县| 鄂托克旗| 广丰县| 黄陵县| 柏乡县| 金溪县| 隆林| 读书| 平阳县| 蓬溪县| 广宗县| 峡江县| 桐梓县| 霍山县| 高安市| 开封县| 威海市| 南投市| 罗山县| 同德县| 永昌县| 河西区| 柯坪县| 高青县| 双辽市| 宣城市|