波浪涟漪扩散动画效果
代码语言:html
所属分类:动画
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
* {
	box-sizing: border-box;
}
body {
	background-color: #5295F1;
	color: #fff;
	font-family: 'Muli', sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
}
h3 {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 450px;
}
.circle {
	background-image: linear-gradient(to bottom, #fff, #eee);
	border-radius: 50%;
	cursor: pointer;
	margin: 8px;
	height: 14px;
	width: 14px;
	transition: transform 0.3s linear;
}
.circle.grow {
	transform: scale(2);
}
.........完整代码请登录后点击上方下载按钮下载查看
















			
			
				
			
	
网友评论0