继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

【九月打卡】第5天 前端工程师学习笔记

踩一个脚印
关注TA
已关注
手记 24
粉丝 0
获赞 0

课程信息

    课程名称:前端工程师

    课程章节:第三周 绘制五星红旗

    课程讲师:

课程内容:

<!DOCTYPE html>


<html>


<head>


<meta charset="utf-8">


<title>五星红旗</title>


<style type="text/css">

/* 此处写代码*/


* {


padding: 0;


margin: 0;


}


.flag {


width: 300px;


height: 200px;


background-color: rgb(218, 37, 29);


position: relative;


margin: auto;


}


.flag .star {


position: absolute;


left: 30px;


top: 50px;


border: 30px solid transparent;


border-top: 20px solid yellow;


}


.flag .star::before {


left: -44px;


top: -30px;


content: "";


position: absolute;


border: 30px solid transparent;


border-top: 20px solid yellow;


transform: rotate(70deg);


}


.flag .star::after {


content: "";


position: absolute;


left: -18px;


top: -30px;


border: 30px solid transparent;


border-top: 20px solid yellow;


transform: rotate(292deg);


}


.flag .one {


transform: scale(1);


}


.flag .two {


left: 80px;


top: 10px;


transform: rotate(25deg) scale(0.4);


}


.flag .three {


left: 100px;


top: 30px;


transform: rotate(45deg) scale(0.4);


}


.flag .four {


left: 100px;


top: 60px;


transform: rotate(65deg) scale(0.4);


}


.flag .five {


left: 80px;


top: 80px;


transform: rotate(85deg) scale(0.4);


}

</style>


</head>


<body>


<!-- 此处写代码 -->


<div class="flag">


<div class="star one"></div>


<div class="star two"></div>


<div class="star three"></div>


<div class="star four"></div>


<div class="star five"></div>


</div>


</body>


</html>


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP