- N +

如何使用CSS3打造一个精美的渐变背景动画?

示例代码如下,添加到指定文件即可



<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>css3背景渐变动画</title>
<style>
body {
	margin: 0;
	width: 100%;
	height: 100vh;
	font-family: "Exo", sans-serif;
	color: #fff;
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradientBG 15s ease infinite;
}
@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.container {
	width: 100%;
	position: absolute;
	top: 35%;
	text-align: center;
}
h1 {
	font-weight: 300;
}
h3 {
	color: #eee;
	font-weight: 100;
}
h5 {
	color:#eee;
	font-weight:300;
}
a,
a:hover {
	text-decoration: none;
	color: #ddd;
}
</style>
</head>
<body>
<div class="container">
	<h1>CSS3背景渐变动画</h1>
</div>
</body>
</html>




-----正文到此结束-----
作者:绿夏

本站下载资源大部分来源于网络,如若侵犯您的权利,请及时联系我们进行删除!

返回列表
上一篇:
下一篇:

发表评论

快捷回复: 操作: