码迷,mamicode.com
首页 > 其他好文 > 详细

打字机效果

时间:2020-09-17 21:20:33      阅读:35      评论:0      收藏:0      [点我收藏+]

标签:oct   for   class   doc   nim   flow   doctype   html   size   

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
		<title>Document</title>
		<style>
			.printer {
				overflow: hidden;
				font-size: 20px;
				width: 0;
				height: 30px;
				background-color: #ccc;
				white-space: nowrap;
				animation: printer 4s steps(20) forwards;
			}

			@keyframes printer {
				0% {
					width: 0;
				}

				100% {
					width: 400px;
				}
			}
		</style>
	</head>
	<body>
		<div class="printer">我在这里等你哦</div>
	</body>
</html>

打字机效果

标签:oct   for   class   doc   nim   flow   doctype   html   size   

原文地址:https://www.cnblogs.com/MarkJacobs/p/13648391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!