<span id="mktg5"></span>

<i id="mktg5"><meter id="mktg5"></meter></i>

        <label id="mktg5"><meter id="mktg5"></meter></label>
        最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
        問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
        當前位置: 首頁 - 科技 - 知識百科 - 正文

        純CSS3時尚價格表設計效果

        來源:懂視網 責編:小采 時間:2020-11-27 18:53:31
        文檔

        純CSS3時尚價格表設計效果

        純CSS3時尚價格表設計效果:簡要教程這是一款使用純CSS3制作的時尚價格表。該價格表通過Bootstrap來進行布局,采用扁平風格,鼠標劃過時還帶有平滑過渡的顏色變化效果。 使用方法 HTML結構該價格表的基本HTML結構如下:<div class="container"> &
        推薦度:
        導讀純CSS3時尚價格表設計效果:簡要教程這是一款使用純CSS3制作的時尚價格表。該價格表通過Bootstrap來進行布局,采用扁平風格,鼠標劃過時還帶有平滑過渡的顏色變化效果。 使用方法 HTML結構該價格表的基本HTML結構如下:<div class="container"> &

        簡要教程

        這是一款使用純CSS3制作的時尚價格表。該價格表通過Bootstrap來進行布局,采用扁平風格,鼠標劃過時還帶有平滑過渡的顏色變化效果。

        使用方法

        HTML結構

        該價格表的基本HTML結構如下:

        <div class="container">
         <div class="row">
         <div class="col-md-3 col-sm-6">
         <div class="pricingTable">
         <div class="pricingTable-header">
         <h3 class="heading">Standard</h3>
         <span class="price-value">
         <span class="currency">$</span> 10
         <span class="month">/mo</span>
         </span>
         </div>
         <div class="pricing-content">
         <ul>
         <li>50GB Disk Space</li>
         <li>50 Email Accounts</li>
         <li>50GB Monthly Bandwidth</li>
         <li>10 Subdomains</li>
         <li>15 Domains</li>
         </ul>
         <a href="#" class="read">sign up</a>
         </div>
         </div>
         </div>
         
         <div class="col-md-3 col-sm-6">
         <div class="pricingTable">
         <div class="pricingTable-header">
         <h3 class="heading">Business</h3>
         <span class="price-value">
         <span class="currency">$</span> 20
         <span class="month">/mo</span>
         </span>
         </div>
         <div class="pricing-content">
         <ul>
         <li>60GB Disk Space</li>
         <li>60 Email Accounts</li>
         <li>60GB Monthly Bandwidth</li>
         <li>15 Subdomains</li>
         <li>20 Domains</li>
         </ul>
         <a href="#" class="read">sign up</a>
         </div>
         </div>
         </div>
         </div>
        </div>

        CSS樣式

        完成該價格表的所有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; }
         }

        聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

        文檔

        純CSS3時尚價格表設計效果

        純CSS3時尚價格表設計效果:簡要教程這是一款使用純CSS3制作的時尚價格表。該價格表通過Bootstrap來進行布局,采用扁平風格,鼠標劃過時還帶有平滑過渡的顏色變化效果。 使用方法 HTML結構該價格表的基本HTML結構如下:<div class="container"> &
        推薦度:
        標簽: 價格表 css css3
        • 熱門焦點

        最新推薦

        猜你喜歡

        熱門推薦

        專題
        Top
        主站蜘蛛池模板: 在线观看成人免费视频| 一级毛片免费不卡直观看| 69式互添免费视频| 国产又长又粗又爽免费视频 | 免费a级毛片无码av| 亚洲高清免费在线观看| 久久九九久精品国产免费直播| 精品免费国产一区二区三区| 日本亚洲免费无线码 | 国产精品亚洲自在线播放页码 | 日韩在线观看免费完整版视频| 成年女人午夜毛片免费视频| 亚洲欧洲日产国产最新| 亚洲欧美国产国产一区二区三区| 91av免费观看| 久久亚洲AV无码精品色午夜 | 天堂亚洲免费视频| 亚洲免费视频一区二区三区| 国产亚洲av片在线观看18女人| 亚洲欧美国产国产综合一区| 成年免费大片黄在线观看岛国| 久久亚洲私人国产精品| 99re6免费视频| 亚洲精品无码Av人在线观看国产| 国产精品美女免费视频观看| 亚洲国产精品尤物yw在线| 粉色视频成年免费人15次| 无码专区一va亚洲v专区在线| 亚洲熟妇av午夜无码不卡| 午夜免费不卡毛片完整版| 亚洲heyzo专区无码综合| 日韩成人免费aa在线看| 久久精品国产亚洲av天美18| 免费看国产一级特黄aa大片| 特级av毛片免费观看| 亚洲视频在线精品| 中文字幕无码毛片免费看| 亚洲情XO亚洲色XO无码| 国产三级在线免费| 97久久精品亚洲中文字幕无码| 国产成人yy免费视频|