溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

CSS3扁平化價(jià)格表代碼怎么寫(xiě)

發(fā)布時(shí)間:2022-03-02 09:16:13 來(lái)源:億速云 閱讀:141 作者:iii 欄目:web開(kāi)發(fā)

這篇文章主要介紹了CSS3扁平化價(jià)格表代碼怎么寫(xiě)的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇CSS3扁平化價(jià)格表代碼怎么寫(xiě)文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。

代碼如下:

<!DOCTYPE html>

<html lang="zh">

<head>

         <meta charset="UTF-8">

         <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

         <meta name="viewport" content="width=device-width, initial-scale=1.0">

         <title>CSS3扁平化價(jià)格表樣式代碼</title>

         <meta name="keywords" content="CSS3,扁平化,價(jià)格表,樣式代碼" />

         <meta name="description" content="CSS3扁平化價(jià)格表樣式代碼。" />

         <link rel="stylesheet" type="text/css" href="css/bootstrap-grid.min.css" />

         <link rel="stylesheet" type="text/css" href="css/demo.css">

         <link rel="stylesheet" href="css/font-awesome.min.css">

 

         <style type="text/css">

         .pricingTable{

             text-align: center;

         }

         .pricingTable .pricingTable-header{

             padding: 30px 0;

             background: #4d4d4d;

             position: relative;

             transition: all 0.3s ease 0s;

         }

         .pricingTable:hover .pricingTable-header{

             background: #09b2c6;

         }

         .pricingTable .pricingTable-header:before,

         .pricingTable .pricingTable-header:after{

             content: "";

             width: 16px;

             height: 16px;

             border-radius: 50%;

             border: 1px solid #d9d9d8;

             position: absolute;

             bottom: 12px;

         }

         .pricingTable .pricingTable-header:before{

             left: 40px;

         }

         .pricingTable .pricingTable-header:after{

             right: 40px;

         }

         .pricingTable .heading{

             font-size: 20px;

             color: #fff;

             text-transform: uppercase;

             letter-spacing: 2px;

             margin-top: 0;

         }

         .pricingTable .price-value{

             display: inline-block;

             position: relative;

             font-size: 55px;

             font-weight: bold;

             color: #09b1c5;

             transition: all 0.3s ease 0s;

         }

         .pricingTable:hover .price-value{

             color: #fff;

         }

         .pricingTable .currency{

             font-size: 30px;

             font-weight: bold;

             position: absolute;

             top: 6px;

             left: -19px;

         }

         .pricingTable .month{

             font-size: 16px;

             color: #fff;

             position: absolute;

             bottom: 15px;

             right: -30px;

             text-transform: uppercase;

         }

         .pricingTable .pricing-content{

             padding-top: 50px;

             background: #fff;

             position: relative;

         }

         .pricingTable .pricing-content:before,

         .pricingTable .pricing-content:after{

             content: "";

             width: 16px;

             height: 16px;

             border-radius: 50%;

             border: 1px solid #7c7c7c;

             position: absolute;

             top: 12px;

         }

         .pricingTable .pricing-content:before{

             left: 40px;

         }

         .pricingTable .pricing-content:after{

             right: 40px;

         }

         .pricingTable .pricing-content ul{

             padding: 0 20px;

             margin: 0;

             list-style: none;

         }

         .pricingTable .pricing-content ul:before,

         .pricingTable .pricing-content ul:after{

             content: "";

             width: 8px;

             height: 46px;

             border-radius: 3px;

             background: linear-gradient(to bottom,#818282 50%,#727373 50%);

             position: absolute;

             top: -22px;

             z-index: 1;

             box-shadow: 0 0 5px #707070;

             transition: all 0.3s ease 0s;

         }

         .pricingTable:hover .pricing-content ul:before,

         .pricingTable:hover .pricing-content ul:after{

             background: linear-gradient(to bottom, #40c4db 50%, #34bacc 50%);

         }

         .pricingTable .pricing-content ul:before{

             left: 44px;

         }

         .pricingTable .pricing-content ul:after{

             right: 44px;

         }

         .pricingTable .pricing-content ul li{

             font-size: 15px;

             font-weight: bold;

             color: #777473;

             padding: 10px 0;

             border-bottom: 1px solid #d9d9d8;

         }

         .pricingTable .pricing-content ul li:last-child{

             border-bottom: none;

         }

         .pricingTable .read{

             display: inline-block;

             font-size: 16px;

             color: #fff;

             text-transform: uppercase;

             background: #d9d9d8;

             padding: 8px 25px;

             margin: 30px 0;

             transition: all 0.3s ease 0s;

         }

         .pricingTable .read:hover{

             text-decoration: none;

         }

         .pricingTable:hover .read{

             background: #09b1c5;

         }

         @media screen and (max-width: 990px){

             .pricingTable{ margin-bottom: 25px; }

         }

         </style>

         <!--[if IE]>

                   <script src="js/html5shiv.min.js"></script>

         <![endif]-->

</head>

<body>

        

         <div class="demo" style="background:#c0bfbf;padding: 1em 0;">

                   <div class="container">

                            <div class="row">

                                     <div class="col-md-3 col-sm-6">

                                               <div class="pricingTable">

                                                        <div class="pricingTable-header">

                                                                 <h4 class="heading">標(biāo)準(zhǔn)型</h4>

                                                                 <span class="price-value">

                                                                           <span class="currency"></span> 10

                                                                           <span class="month">/</span>

                                                                 </span>

                                                        </div>

                                                        <div class="pricing-content">

                                                                 <ul>

                                                                           <li>50GB 硬盤(pán)空間</li>

                                                                           <li>50 郵箱賬號(hào)</li>

                                                                           <li>50GB 月流量</li>

                                                                           <li>10 二級(jí)域名</li>

                                                                           <li>15 頂級(jí)域名</li>

                                                                 </ul>

                                                                 <a href="#" class="read">立即購(gòu)買(mǎi)</a>

                                                        </div>

                                               </div>

                                     </div>

 

                                     <div class="col-md-3 col-sm-6">

                                               <div class="pricingTable">

                                                        <div class="pricingTable-header">

                                                                 <h4 class="heading">商務(wù)型</h4>

                                                                 <span class="price-value">

                                                                           <span class="currency"></span> 20

                                                                           <span class="month">/</span>

                                                                 </span>

                                                        </div>

                                                        <div class="pricing-content">

                                                                 <ul>

                                                                           <li>60GB 硬盤(pán)空間</li>

                                                                           <li>60 郵箱賬號(hào)</li>

                                                                           <li>60GB 月流量</li>

                                                                           <li>15 二級(jí)域名</li>

                                                                           <li>20 頂級(jí)域名</li>

                                                                 </ul>

                                                                 <a href="#" class="read">立即購(gòu)買(mǎi)</a>

                                                        </div>

                                               </div>

                                     </div>

 

                                     <div class="col-md-3 col-sm-6">

                                               <div class="pricingTable">

                                                        <div class="pricingTable-header">

                                                                 <h4 class="heading">旗艦型</h4>

                                                                 <span class="price-value">

                                                                           <span class="currency"></span> 30

                                                                           <span class="month">/</span>

                                                                 </span>

                                                        </div>

                                                        <div class="pricing-content">

                                                                 <ul>

                                                                           <li>70GB 硬盤(pán)空間</li>

                                                                           <li>70 郵箱賬號(hào)</li>

                                                                           <li>70GB 月流量</li>

                                                                           <li>20 二級(jí)域名</li>

                                                                           <li>25 頂級(jí)域名</li>

                                                                 </ul>

                                                                 <a href="#" class="read">立即購(gòu)買(mǎi)</a>

                                                        </div>

                                               </div>

                                     </div>

 

                                     <div class="col-md-3 col-sm-6">

                                               <div class="pricingTable">

                                                        <div class="pricingTable-header">

                                                                 <h4 class="heading">至尊型</h4>

                                                                 <span class="price-value">

                                                                           <span class="currency"></span> 40

                                                                           <span class="month">/</span>

                                                                 </span>

                                                        </div>

                                                        <div class="pricing-content">

                                                                 <ul>

                                                                           <li>80GB 硬盤(pán)空間</li>

                                                                           <li>80 郵箱賬號(hào)</li>

                                                                           <li>80GB 月流量</li>

                                                                           <li>25 二級(jí)域名</li>

                                                                           <li>30 頂級(jí)域名</li>

                                                                 </ul>

                                                                 <a href="#" class="read">立即購(gòu)買(mǎi)</a>

                                                        </div>

                                               </div>

                                     </div>

                            </div>

                   </div>

         </div>

        

</body>

</html>

關(guān)于“CSS3扁平化價(jià)格表代碼怎么寫(xiě)”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“CSS3扁平化價(jià)格表代碼怎么寫(xiě)”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI