div+css实现精致按钮悬浮边框光晕效果代码
代码语言:html
所属分类:悬停
代码描述:div+css实现精致按钮悬浮边框光晕效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
body {
min-height: 100vh;
font-family: 'Poppins', sans-serif;
display: flex;
justify-content: center;
align-items: center;
background: #000;
}
* {
box-sizing: border-box;
}
.btn-shine {
position: relative;
color: #0e84d4;
background: #031f32;
text-decoration: none;
padding: 2px;
border-radius: 999px;
overflow: hidden;
-webkit-mask-image: -webkit-radial-gradient(#fff, #000);
transition: all 150ms ease;
font-size: 16px;
font-weight: 600;
}
.btn-shine div {
position: relative;
background: #010d14;
padding: 12px 32px;
border-radius: 999px;
box-shadow: inset 0 -8px 4px rgba(29,155,240,0);
transition: all 0.2s ease;
}
.btn-shine:before {
content: "";
position: absolute;
top: calc(50% - 16px);
.........完整代码请登录后点击上方下载按钮下载查看
网友评论0