分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 教程案例

CSS之不常用但重要的样式总结

发布时间:2023-09-06 02:29责任编辑:傅花花关键词:CSS

1,设置颜色渐变

background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.67), rgba(255, 255, 255, 0));(从上到下的颜色渐变)
background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.71));(设置圆周渐变,从外到里)

2,设置背景图片

① background: url("") 0 0 no-repeat;(URL的值可以是图片所在路径、地址链接或base64编码)
② background: url("") no-repeat center;
③ background-image: url("");
?background-repeat: no-repeat;
?background-position: 50% 50%;
?background-size: 100% 100%;

3,css样式实现播放暂停、开始按钮

 ① 开始按钮(竖立的等于号效果)

&:before {
?width: 5px;
?height: 16px;
?background: #fff;
?position: absolute;
?content: "";
?left: 16px
}
&:after {
?width: 5px;
?height: 16px;
?background: #fff;
?position: absolute;
?content: "";
?right: 16px
}
② 暂停按钮(三角形)
&:before {
?width: 0;
?height: 0;
?border-left: 15px solid #fff;
?border-right: 15px solid transparent;
?border-top: 8px solid transparent;
?border-bottom: 8px solid transparent;
?position: absolute;
?content: "";
?left: 6px;
}
 
 

CSS之不常用但重要的样式总结

原文地址:https://www.cnblogs.com/chenbeibei520/p/10251790.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved