<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
        主站蜘蛛池模板: 亚洲AV综合色区无码一二三区| 亚洲国产美女精品久久久久∴| 亚洲午夜一区二区三区| 99久久免费精品高清特色大片| 亚洲VA成无码人在线观看天堂 | 国产v亚洲v天堂无码网站| 国产高潮流白浆喷水免费A片 | 亚洲男人的天堂一区二区| 九九免费观看全部免费视频| 亚洲精品岛国片在线观看| 久久国产精品免费一区二区三区| 亚洲夜夜欢A∨一区二区三区| 水蜜桃视频在线观看免费播放高清| 亚洲婷婷五月综合狠狠爱| 黄色网址在线免费| 亚洲国产av美女网站| 成人免费一区二区无码视频| 亚洲AV日韩AV无码污污网站| 亚洲性日韩精品国产一区二区| 国产免费无码AV片在线观看不卡| 久久精品国产亚洲AV麻豆网站| 亚洲欧洲免费无码| 激情无码亚洲一区二区三区| 中文字幕亚洲日韩无线码| 欧洲精品99毛片免费高清观看| 亚洲国产精品日韩在线| 国产成人在线免费观看| 国产精品偷伦视频免费观看了| 亚洲精品在线不卡| 国产美女a做受大片免费| 亚洲精品偷拍视频免费观看| 亚洲成人一级电影| 国产一区二区三区免费视频 | 国产免费久久精品99久久| 亚洲AV日韩AV鸥美在线观看| 国产成人免费高清激情视频| 性生大片视频免费观看一级| 久久久亚洲欧洲日产国码二区| 国产一级高清免费观看| 无码人妻久久一区二区三区免费| 亚洲伊人久久大香线蕉AV|