• <fieldset id="8imwq"><menu id="8imwq"></menu></fieldset>
  • <bdo id="8imwq"><input id="8imwq"></input></bdo>
    最新文章專題視頻專題問答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
    主站蜘蛛池模板: 精品免费视在线观看| 国产香蕉国产精品偷在线| 99久久婷婷国产综合精品草原| 亚洲精品无码成人AAA片| 国产成人亚洲精品影院| 国产精品99久久免费观看| 日韩熟女精品一区二区三区| 99re66在线观看精品免费| 国产精品麻豆高清在线观看| 欧洲精品99毛片免费高清观看 | 99久久婷婷免费国产综合精品| 免费精品精品国产欧美在线欧美高清免费一级在线 | 国产成人AV无码精品| 2022精品天堂在线视频| 久久久一本精品99久久精品66| 欧美日韩成人精品久久久免费看 | 99久久精品日本一区二区免费| 在线精品亚洲一区二区三区| 精品露脸国产偷人在视频 | 国产精品亚洲二区在线观看 | 久久精品亚洲欧美日韩久久| 99在线观看视频免费精品9| 精品一区二区在线观看| 国产日韩一区在线精品欧美玲| 精品久久久无码人妻中文字幕豆芽 | 精品第一国产综合精品蜜芽| 91精品国产麻豆国产自产在线| 国产精品爽黄69天堂a| 国99精品无码一区二区三区| 国产女主播精品大秀系列| 久久精品国产亚洲av麻豆小说 | 久久国产综合精品五月天| 国产精品内射久久久久欢欢| 国产精品成人免费观看| www夜片内射视频日韩精品成人| 欧美精品国产日韩综合在线| 精品久久久久久国产91| 久久96国产精品久久久| 久久精品国产秦先生| 欧美精品国产日韩综合在线| 911亚洲精品国内自产|