svg+css实现水滴冒泡液体动画效果代码

代码语言:html

所属分类:动画

代码描述:svg+css实现水滴冒泡液体动画效果代码

代码标签: svg css 水滴 冒泡 液体 动画

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

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
<style>
body,html {
	align-items:center;
	background-color:#0c1016;
	display:flex;
	font-family:"Roboto";
	font-size:10px;
	height:100%;
	justify-content:center;
	margin:0;
	padding:0;
	width:100%
}
* {
	box-sizing:border-box
}
svg {
	position:absolute;
	top:-4000px;
	left:-4000px
}
#gooey-button {
	padding:1rem;
	font-size:2rem;
	border:0;
	color:#0c1016;
	filter:url("#gooey");
	position:relative;
	background-color:#00FF80
}
#gooey-button:focus {
	outline:0
}
#gooey-button .bubbles {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0
}
#gooey-button .bubbles .bubble {
	background-color:#00FF80;
	border-radius:100%;
	position:absolute;
	top:0;
	left:0;
	display:block;
	z-index:-1
}
#gooey-button .bubbles .bubble:nth-child(1) {
	left:13px;
	width:25px;
	height:25px;
	-webkit-animation:move-1 3.02s infinite;
	animation:move-1 3.02s infinite;
	-webkit-animation-delay:.2s;
	animation-delay:.2s
}
#gooey-button .bubbles .bubble:nth-child(2) {
	left:18px;
	width:25px;
	height:25px;
	-webkit-animation:move-2 3.04s infinite;
	animation:move-2 3.04s in.........完整代码请登录后点击上方下载按钮下载查看

网友评论0