css動畫 自動打字,讓你的文字飛舞起來


自動打字的效果 非一般的炫酷

 	<!DOCTYPE html>
	<html lang="en">
	<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
	@keyframes typing { 
        from { width: 0; } 
	} 
	@keyframes caret { 
        50% { border-color: transparent; } 
	} 
	p { 
	    width: 16em; 
	    overflow: hidden; 
	    white-space: nowrap; 
	    border-right: 0.1em solid; 
	    animation: typing 13s steps(16), caret 0.5s steps(1) infinite;
	}
	</style>
	</head>
	<body>
	<p>心沒有棲息的地方,到哪都是流浪。</p>
	</body>
	</html>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM