<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
        主站蜘蛛池模板: 亚洲成综合人影院在院播放| 男人j进入女人j内部免费网站| 国产亚洲精AA在线观看SEE| 国产成人亚洲合集青青草原精品| 午夜免费福利小电影| 国产亚洲成av片在线观看| 一区二区三区免费视频播放器| 无码人妻一区二区三区免费n鬼沢| 亚洲人成人网站在线观看| 国产av无码专区亚洲av毛片搜| 成人性生交大片免费看好| 浮力影院亚洲国产第一页| 亚洲无成人网77777| 亚洲一区免费视频| 国产成人精品亚洲2020| 成全影视免费观看大全二| 久久亚洲AV成人无码国产电影| 四虎永久成人免费| eeuss影院www天堂免费| 国产精一品亚洲二区在线播放 | 成年黄网站色大免费全看| 亚洲精品视频久久| 91免费国产视频| mm1313亚洲精品无码又大又粗| 国产精品亚洲专一区二区三区| www.91亚洲| 外国成人网在线观看免费视频| 亚洲欧洲综合在线| 国产精品va无码免费麻豆| 一区二区在线视频免费观看| 亚洲国产成人精品女人久久久| 91福利免费网站在线观看| 亚洲国产高清视频| 日韩精品无码免费专区午夜不卡| 老色鬼久久亚洲AV综合| 夫妻免费无码V看片| 特级毛片aaaa级毛片免费| 亚洲综合无码AV一区二区| 2020因为爱你带字幕免费观看全集 | 亚洲精品在线视频| 最近2019中文字幕免费直播 |