用css 现实打字机效果

直接写代码,真正使用注意,一个是 width的值,二是注意在不同浏览器的兼容问题。或者用gif 图片代替

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Repeated Typing Effect</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <div class="typing-effect">
    用CSS实现实现打字机效果!!!
  </div>
  
  <style>
	 @keyframes typing {
	   0% {
	     width: 0;
	   }
	   100% {
	     width: 100%;
	   }
	 }
	 
	 @keyframes blink-caret {
	   0%, 100% {
	     border-color: transparent;
	   }
	   50% {
	     border-color: black;
	   }
	 }
	 
	 .typing-effect {
	   overflow: hidden;
	   border-right: 4px solid black;
	   white-space: nowrap;
	   width: 550px;
	   max-width: 550px;
	   animation: typing 9.5s steps(40, end) forwards, blink-caret 0.75s step-end infinite;
	   animation-iteration-count: infinite; /* 让打字机效果无限重复 */
	   font-size: 35px;
		background: linear-gradient(to right, #0055ff, #00aaff);
		font-weight: 600;
	   -webkit-background-clip: text;
	   -webkit-text-fill-color: transparent;
	   	line-height: 1.5;
	 } 
  </style>
  
</body>
</html>
相关推荐
癞皮狗不赖皮6 分钟前
WEB攻防-通用漏洞_XSS跨站_权限维持_捆绑钓鱼_浏览器漏洞
前端·web安全·网络安全·xss
_未知_开摆32 分钟前
CSS | 实现三列布局(两边边定宽 中间自适应,自适应成比)
前端·css·vue.js·vue·html·css3·html5
飞行codes40 分钟前
FLASK创建下载
前端·python·flask
XRJ040618xrj1 小时前
web前端第八次作业---制作音乐榜单
前端
匹马夕阳1 小时前
基于TypeScript封装 `axios` 请求工具详解
前端·javascript·typescript
小魁的C世界1 小时前
uniapp小程序开发,配置开启小程序右上角三点的分享功能
前端·小程序·uni-app
小彭努力中2 小时前
64.在Vue3中使用OpenLayers显示带箭头的线段,箭头居中
前端·javascript·vue.js·arcgis·openlayers
我是哈哈hh2 小时前
【javascript】Web APIs-Dom获取&属性操作
开发语言·前端·javascript·css·html
02苏_2 小时前
2025/1/12 复习JS
开发语言·前端·javascript
HsuYang3 小时前
Vite源码学习(七)——DEV流程中的Middleware
前端·javascript·架构