CSS教程

CSS3 输入文字特效

本文主要是介绍CSS3 输入文字特效,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title></title>
		<style type="text/css">
			* {
				margin: 0;
				padding: 0;
			}

			body {
				position: relative;
				min-height: 100vh;
				background: #000;
			}

			.typewriting {
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
			}

			.typewriting h2 {
				overflow: hidden;
				white-space: nowrap;
				letter-spacing: 5px;
				font: bold 4em TencentSans;
				color: #fff;
				animation: typing 3s steps(6) forwards;
			}

			.typewriting::after {
				content: "";
				display: block;
				position: absolute;
				top: 0;
				right: 0;
				width: 2px;
				height: 100%;
				background: #fff;
				animation: blink 1.1s linear infinite;
			}

			@keyframes blink {

				0%,
				49% {
					opacity: 1;
				}

				50%,
				100% {
					opacity: 0;
				}
			}

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

				100% {
					width: 414px;
				}
			}
		</style>
	</head>
	<body>
		<div class="typewriting">
			<h2>输入文字特效</h2>
		</div>
	</body>
</html>

这篇关于CSS3 输入文字特效的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!