<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
.transition{
width:200px;
height:200px;
background-color:red;
font-size:36px;
color:blue;
transition:all 2s;
}
.transition:hover{
width:1000px;
height:10000px;
}
span{
color:blue;
font-size:50px;
text-shadow:1px 1px 1px blue;
transition:all 0.1s;
tr
}
span:hover{
text-shadow:5px 5px 5px blue;
}
</style>
</head>
<body>
<div class="transition">
transition过渡
</div>
<span>发光字体</span>
</body>
</html>
字体发光
最新推荐文章于 2020-12-19 14:49:45 发布