微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

css3 八个元素做圆圈

CSS3 是一个非常流行的网页设计语言,它为网页设计师提供了很多强大的工具。其中,CSS3 八个元素做出圆圈是一种非常流行的设计技巧。

.circle1 {
   width: 100px;
   height: 100px;
   border-radius: 50%;
   background-color: red;
}

.circle2 {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background-color: yellow;
   border: 5px solid green;
}

.circle3 {
   width: 150px;
   height: 150px;
   border-radius: 50%;
   background-color: blue;
   Box-shadow: 0px 0px 10px black;
}

.circle4 {
   width: 100px;
   height: 100px;
   border-radius: 50%;
   background-color: orange;
   transform: rotate(45deg);
}

.circle5 {
   width: 100px;
   height: 100px;
   border: 5px solid purple;
   border-radius: 50%;
   background: linear-gradient(to bottom right,yellow,blue);
}

.circle6 {
   width: 120px;
   height: 100px;
   border-top-left-radius: 50%;
   border-top-right-radius: 50%;
   border-bottom-right-radius: 0%;
   border-bottom-left-radius: 0%;
   background-color: pink;
   transform: rotate(-45deg);
}

.circle7 {
   width: 100px;
   height: 100px;
   border-radius: 50%;
   background-image: url('circle.jpeg');
}

.circle8 {
   width: 100px;
   height: 100px;
   border-radius: 50%;
   background-color: cyan;
   clip-path: circle(50% at 50% 50%);
}

css3 八个元素做圆圈

上述代码就展示了使用 CSS3 八个元素创建圆圈的不同方式。圆圈设计技巧已经成为了网站设计的传统之一。拥有这样一项技能,可以让你的设计从中脱颖而出。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。