时间:2021-05-08
1. 实现不等宽背景条纹:
.cont{width: 500px;height: 200px;background: linear-gradient(#78C9DB 70%,#0acf00 0%);background-size: 100% 20px;}如果想设置等宽的渐变只需要将开始值和结束值改为互补
如果你需要等宽切无过渡的渐变,开始和结束值设置为50%即可。
如果你想要垂直条纹,你只需要调整background-size的x、y值即可。
2.瓷砖条纹背景
.cont{width:500px;height:200px;background:linear-gradient(45deg,#78C9DB 50%,#0acf00 50%);background-size:30px 30px;}3. 草地背景
.cont{width:500px;height:200px;background:linear-gradient(-45deg,#0acf00 50%,#78C9DB 50%);background-size:30px 100%;}4. 斜条纹背景
.cont{width:500px;height:200px;background:linear-gradient(-45deg,#0acf00 25%,#78C9DB 0,#78C9DB 50%,#0acf00 0,#0acf00 75%,#78C9DB 0);效果相同 background-size: 30px 30px;}5.单色斜条纹背景(利用透明度及transparent)
.cont{width:500px;height:200px;background:#fff repeating-linear-gradient(30deg,rgba(0,0,0,.5),rgba(0,0,0,.5)15px,transparent 0,transparent 30px);}6. 格子衫背景
.cont{width:500px;height:200px;background:#fff;background: linear-gradient(90deg,rgba(100,0,0,.5) 50%,transparent 0),linear-gradient(rgba(100,0,0,.5) 50%,transparent 0);background-size: 30px 30px;}7.波点背景
.cont{margin:50px;width:500px;height:200px;background:#a95f44;background-image:radial-gradient(#fff 30%,transparent 0),radial-gradient(#fff 30%,transparent 0);background-size:20px 20px;background-position:0 0,10px 10px; // 必须是background-size尺寸的1/2}8.棋盘背景
.cont{width:500px;height:200px;background: #fff;background-image:linear-gradient(45deg,#a95f44 26%,transparent 0,transparent 75%,#a95f44 0),linear-gradient(45deg,#a95f44 26%,transparent 0,transparent 75%,#a95f44 0);background-size:30px 30px;background-position:0 0,15px 15px;}总结
以上所述是小编给大家介绍的CSS3制作酷炫的条纹背景,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在学习css3的过程中,发现很多看着炫酷的效果,利用css3的属性能很简单的实现,animation是css3动画效果中常见的属性。下面让我们了解一下如何利用这
通过css3实现炫酷的雷达扫描图:直接上代码://index.html雷达扫描图//index.css*{box-sizing:border-box;}html
用css3动画实现的一个简单炫酷效果,最终的效果图如下:页面结构(index.html):DocumentRelaxAndBreathscript.js:con
至今HTML5中国已经为大家分享过几百种基于CSS3的Loading加载动画,效果酷炫代码简洁,非常值得学习借鉴;今天就先给大家分享两个常用的CSS3的Load
复制代码代码如下:css3实现多背景展示 通过css3定位多张背景并且使用固定属性。