新增第89个小实例:自带射灯的浮雕按钮

This commit is contained in:
DESKTOP-BM6RJU5\wyanh 2022-01-04 18:21:51 +08:00
parent f51cfb4cef
commit 40f8c307c6
3 changed files with 103 additions and 1 deletions

View File

@ -92,4 +92,5 @@
85. HTML5+CSS3小实例莫比乌斯环loading动画
86. HTML5+CSS3+JS小实例滚动渐变导航栏
87. HTML5+CSS3+JS小实例逼真的玻璃卡片悬停效果
88. HTML5+CSS3小实例广告灯牌效果的loading动画
88. HTML5+CSS3小实例广告灯牌效果的loading动画
89. HTML5+CSS3小实例自带射灯的浮雕按钮

82
css/89.css Normal file
View File

@ -0,0 +1,82 @@
*{
/* 初始化 */
margin: 0;
padding: 0;
}
body{
/* 100%窗口高度 */
height: 100vh;
/* 弹性布局 水平+垂直居中 */
display: flex;
justify-content: center;
align-items: center;
/* 垂直排列元素 */
flex-direction: column;
background-color: #333;
}
button{
margin: 10px;
width: 280px;
height: 90px;
font-size: 35px;
font-weight: bold;
background: transparent;
border: 1px solid transparent;
/* 相对定位 */
position: relative;
/* 设置内阴影 */
box-shadow: inset 1px 1px 2px #000,
inset -1px -1px 2px #808080;
color: #333;
/* 文本阴影 */
text-shadow: 1px 1px 0 #808080;
overflow: hidden;
/* 加个过渡 */
transition: 0.3s linear 0.15s;
}
/* 分别为各个按钮设置自定义属性--c颜色 */
button:nth-child(1){
--c:#ff4757;
}
button:nth-child(2){
--c:#ffa502;
}
button:nth-child(3){
--c:#2ed573;
}
button:nth-child(4){
--c:#1e90ff;
}
/* 射灯 */
button::before{
content: "";
/* 绝对定位 */
position: absolute;
width: 100px;
height: 8px;
top: 0;
left: 50%;
transform: translateX(-50%);
/* background: var(--c); */
border-radius: 0 0 50% 50%;
/* 模糊滤镜 */
filter: blur(5px);
/* 设置过渡 */
transition: 0.3s;
}
button:hover::before{
/* 通过var函数调用自定义属性--c设置射灯颜色 */
background: var(--c);
box-shadow: 0 0 10px var(--c),
0 0 20px var(--c),
0 0 30px var(--c),
0 0 40px var(--c),
0 0 50px var(--c);
}
button:hover{
color: #fff;
text-shadow: 0 0 10px var(--c),
0 5px 5px #000;
box-shadow: inset 1px 1px 2px #000,
inset -1px -1px 2px var(--c);
}

19
html/89.html Normal file
View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<title>自带射灯的浮雕按钮</title>
<link rel="stylesheet" href="../css/89.css">
</head>
<body>
<button>求点赞</button>
<button>求关注</button>
<button>求收藏</button>
<button>求转发</button>
</body>
</html>