css实现炫酷渐变文字动画效果代码

代码语言:html

所属分类:动画

代码描述:css实现炫酷渐变文字动画效果代码

代码标签: css 炫酷 渐变 文字 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">

  
  
<style>
@import url(https://fonts.bunny.net/css?family=audiowide:400);

@property --angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}
@property --x {
	syntax: "<percentage>";
	initial-value: 0%;
	inherits: false;
}

* {
	box-sizing: border-box;
}
body {
	min-height: 100svh;
	background-color: black;
	display: grid;
	place-content: center;
	font-family: system-ui;
	color: white;
}

h1 {
	--rotate-speed: 4s;
	--move-speed: .........完整代码请登录后点击上方下载按钮下载查看

网友评论0