css实现玻璃发光按钮悬浮效果代码

代码语言:html

所属分类:悬停

代码描述:css实现玻璃发光按钮悬浮效果代码

代码标签: css 玻璃 发光 按钮 悬浮

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">


    <style>
        @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Roboto:wght@400;500;700&display=swap");
        
        * {
        	margin: 0;
        	padding: 0;
        	box-sizing: border-box;
        	font-family: "Roboto", sans-serif;
        }
        body {
        	position: relative;
        	display: flex;
        	justify-content: center;
        	align-items: center;
        	min-height: 100vh;
        	background: linear-gradient(to bottom, #5d326c, #350048); /*fiolet*/
        }
        .container {
        	width: 1000px;
        	display: flex;
        	flex-wrap: wrap;
        	justify-content: space-around;
        }
        .container .btn {
        	position: relative;
        	top: 0;
        	left: 0;
        	width: 250px;
        	height: 50px;
        	margin: 0;
        	display: flex;
        	justify-content: center;
        	align-items: center;
        }
        .container .btn a {
        	position: absolute;
        	top: 0;
        	left: 0;
        	width: 100%;
        	height: 100%;
        	display: flex;
        	justify-content: center;
        	align-items: center;
        	background: rgba(255, 255, 255, 0.05);
        	box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
        	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        	border-top: 1px solid rgba(255, 255, 255, 0.1);
        	border-radius: 30px;
        	padding: 10px;
        	letter-spacing: 1px;
        	text-decoration: none;
        	overflow: hidden;
        	color: #fff;
        	font-weight: 400px;
        	z-index: 1;
        	transition: 0.5s;
        	backdrop-filter: blur(15px);
        }
        .container .btn:hover a {
        	letter-spacing: 3px;
        }
        .container .btn a::before {
        	content: "";
        	position: absolute;
        	top: 0;
        	left: 0;
        	width: 50%;
        	height: 100%;
        	background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
        	transform: skewX(45deg) translate(0);
        	transition: 0.5s;
        	filter: blur(0px);
        }
       .........完整代码请登录后点击上方下载按钮下载查看

网友评论0