<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
        當前位置: 首頁 - 科技 - 知識百科 - 正文

        純HTML5+CSS3制作生日蛋糕(代碼易懂)

        來源:懂視網 責編:小采 時間:2020-11-27 15:12:36
        文檔

        純HTML5+CSS3制作生日蛋糕(代碼易懂)

        純HTML5+CSS3制作生日蛋糕(代碼易懂):廢話不多說,先給大家展示下效果圖:蛋糕分為三個部分,底部蛋糕,頂層蛋糕和蠟燭部分。HTML的布局結構也是按照這三部分布局的。另外就是使用CSS定位和CSS3的rotate,內外陰影等效果調整部分DOM元素樣式。比較簡單,相信碼農都懂的。不贅述其它有的沒的了。下
        推薦度:
        導讀純HTML5+CSS3制作生日蛋糕(代碼易懂):廢話不多說,先給大家展示下效果圖:蛋糕分為三個部分,底部蛋糕,頂層蛋糕和蠟燭部分。HTML的布局結構也是按照這三部分布局的。另外就是使用CSS定位和CSS3的rotate,內外陰影等效果調整部分DOM元素樣式。比較簡單,相信碼農都懂的。不贅述其它有的沒的了。下
        廢話不多說,先給大家展示下效果圖:

        蛋糕分為三個部分,底部蛋糕,頂層蛋糕和蠟燭部分。HTML的布局結構也是按照這三部分布局的。另外就是使用CSS定位和CSS3的rotate,內外陰影等效果調整部分DOM元素樣式。比較簡單,相信碼農都懂的。

        不贅述其它有的沒的了。

        下面給出完整的的HTML代碼和CSS代碼

        <!DOCTYPE html>
        <html>
        <head lang="en">
         <meta charset="UTF-8">
         <title></title>
         <style>
         .birthday .container{
         width:600px;
         height:600px;
         margin:0px auto;
         background: #fafafa;
         border-radius:5px;
         position: relative;
         }
         /**
         ** 頂層的
         **/
         .birthday .top-one{
         position: absolute;
         width:280px;
         height: 280px;
         bottom: 200px;
         left:160px;
         }
         .birthday .top-one .bottom{
         position: absolute;
         width:280px;
         height: 280px;
         bottom:-30px;
         border:1px solid #3e2001;
         border-radius: 140px;
         transform: rotateX(60deg);
         z-index: 4;
         background: #3e2001;
         box-shadow: 0px 0px 20px #3e2001;
         }
         .birthday .top-one .top{
         position: absolute;
         width:280px;
         height: 280px;
         top:-50px;
         border-radius: 140px;
         background: #FFFFFF;
         transform: rotateX(60deg);
         box-shadow: 2px 2px 20px #b7b7b7;
         z-index: 6;
         background: -webkit-repeating-radial-gradient(circle, #783d01, #3e2001 10px, #914909 10px,white 20px);
         background: -moz-repeating-radial-gradient(circle, #783d01, #3e2001 10px,#914909 10px,white 20px);
         }
         .birthday .top-one .side{
         position: absolute;
         top:95px;
         width:280px;
         height: 70px;
         border:1px solid #3e2001;
         border-top-width: 0px;
         border-bottom-width: 0px;
         background: #FFFFFF;
         z-index: 5;
         background: #3e2001;
         }
         /**
         ** 底層的
         **/
         .birthday .bottom-one{
         position: absolute;
         width:400px;
         height: 400px;
         bottom: 0px;
         left:100px;
         }
         .birthday .bottom-one .bottom{
         position: absolute;
         width:400px;
         height: 400px;
         bottom:-30px;
         border:1px solid #914909;
         border-radius: 200px;
         transform: rotateX(60deg);
         box-shadow: 2px 2px 20px #914909;
         z-index: 1;
         background: #3e2001;
         overflow: hidden;
         }
         .birthday .bottom-one .line{
         position: absolute;
         width:400px;
         height: 400px;
         border-radius: 200px;
         z-index: 1;
         }
         .birthday .bottom-one .line1{
         bottom: 30px;
         border:5px solid #783d01;
         left:-5px;
         z-index: 1;
         }
         .birthday .bottom-one .top{
         position: absolute;
         width:400px;
         height: 400px;
         top:-100px;
         border:1px solid #3e2001;
         border-radius: 200px;
         background: #FFFFFF;
         transform: rotateX(60deg);
         z-index: 3;
         background: #783d01;
         box-shadow: inset 0px 0px 20px #3e2001;
         }
         .birthday .bottom-one .side{
         position: absolute;
         top:100px;
         width:400px;
         height: 130px;
         border:1px solid #3e2001;
         border-top-width: 0px;
         border-bottom-width: 0px;
         background: #3e2001;
         z-index: 2;
         }
         /**
         ** 底層的文字
         **/
         .birthday .flower{
         position: relative;
         text-align: justify;
         z-index: 9;
         top:200px;
         font-size: 32px;
         font-family: "Helvetica Neue", "Noto Sans CJK SC", "Source Han Sans CN";
         color:#FFFFFF;
         font-weight: bold;
         }
         .birthday .flower:after{
         content:"";
         display:inline-block;
         position: relative;
         width:100%;
         }
         .birthday .flower i{
         position: relative;
         width:80px;
         line-height: 80px;
         display: inline-block;
         border-radius: 50%;
         border:2px solid #783d01;
         text-align: center;
         }
         /**
         ** 頂層的文字
         **/
         .birthday .top-one .text{
         width:100%;
         text-align: center;
         position: absolute;
         top:165px;
         z-index: 9;
         margin:0px auto;
         font-size: 30px;
         color:#FFFFFF;
         transform: rotateX(60deg) skew(10deg,20deg);
         }
         /**
         ** 蠟燭
         **/
         .birthday .candle{
         width:10px;
         height:80px;
         margin:0px auto;
         position: absolute;
         left:295px;
         top:130px;
         z-index: 9;
         }
         .birthday .candle .body{
         width:10px;
         height:70px;
         margin:0px auto;
         background: red;
         border-bottom-width: 0px;
         }
         .birthday .candle .top{
         width:10px;
         height: 10px;
         border-radius: 5px;
         transform: rotateX(60deg);
         position: relative;
         top:5px;
         background: red;
         }
         .birthday .candle .bottom{
         width:10px;
         height: 10px;
         border-radius: 5px;
         transform: rotateX(60deg);
         position: relative;
         bottom:5px;
         background: red;
         box-shadow: 1px 1px 10px red;
         }
         .birthday .candle .fire{
         position: absolute;
         width:6px;
         height: 6px;
         left:2px;
         transform: rotate(45deg);
         background: #ffd507;
         box-shadow: 0px 0px 20px #ffff00, 2px 2px 10px red;
         }
         </style>
        </head>
        <body>
         <p class="birthday">
         <p class="container">
         <p class="candle">
         <p class="fire"></p>
         <p class="top"></p>
         <p class="body"></p>
         <p class="bottom"></p>
         </p>
         <p class="top-one">
         <p class="top"></p>
         <p class="side"></p>
         <p class="bottom"></p>
         <p class="text">
         Happy Birthday
         </p>
         </p>
         <p class="bottom-one">
         <p class="top"></p>
         <p class="side"></p>
         <p class="bottom">
         <p class="line line1"></p>
         </p>
         <p class="flower">
         <i style="top:-20px;transform: rotateY(50deg)">生</i>
         <i style="top:15px;transform: rotateY(30deg)">日</i>
         <i style="top:15px;transform: rotateY(30deg)">快</i>
         <i style="top:-20px;transform: rotateY(50deg)">樂</i>
         </p>
         </p>
         </p>
         </p>
        </body>
        </html>

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

        文檔

        純HTML5+CSS3制作生日蛋糕(代碼易懂)

        純HTML5+CSS3制作生日蛋糕(代碼易懂):廢話不多說,先給大家展示下效果圖:蛋糕分為三個部分,底部蛋糕,頂層蛋糕和蠟燭部分。HTML的布局結構也是按照這三部分布局的。另外就是使用CSS定位和CSS3的rotate,內外陰影等效果調整部分DOM元素樣式。比較簡單,相信碼農都懂的。不贅述其它有的沒的了。下
        推薦度:
        • 熱門焦點

        最新推薦

        猜你喜歡

        熱門推薦

        專題
        Top
        主站蜘蛛池模板: 日韩一区二区在线免费观看| 无码少妇精品一区二区免费动态 | 国产免费伦精品一区二区三区 | 一级毛片成人免费看免费不卡| 亚洲综合av永久无码精品一区二区| 日韩在线一区二区三区免费视频| 四虎影视永久免费视频观看| 狠狠入ady亚洲精品| 国产免费牲交视频| 日本一区二区三区在线视频观看免费| 又粗又硬又黄又爽的免费视频 | 亚洲精品动漫在线| 91情侣在线精品国产免费| 亚洲一区在线视频观看| 91视频国产免费| 久久精品亚洲日本波多野结衣| 四虎影库久免费视频| 又黄又大的激情视频在线观看免费视频社区在线 | 91精品成人免费国产片| 亚洲AV成人噜噜无码网站| 天天操夜夜操免费视频| 老司机午夜在线视频免费| 久久精品国产亚洲网站| 亚洲人成免费网站| 亚洲国产av玩弄放荡人妇| 亚洲午夜精品一级在线播放放| 国产婷婷成人久久Av免费高清| 久久久久亚洲AV无码专区首JN | 亚洲偷自拍拍综合网| 99久久精品免费视频| 亚洲GV天堂无码男同在线观看| 亚洲第一永久AV网站久久精品男人的天堂AV | 亚洲一二成人精品区| 免费人成视频在线| 国产男女爽爽爽免费视频| 亚洲四虎永久在线播放| 国产猛烈高潮尖叫视频免费| a国产成人免费视频| 亚洲国产日韩精品| 亚洲日韩精品一区二区三区无码| 成人黄色免费网址|