前端HTML transition过渡动画的使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.one{
margin: 50px auto;
width: 300px;
height: 300px;
background-color: pink;
/*设置动画属性*/
/*单属性支持多个属性用,隔开*/
transition-property: width,height;
/*设置动画时间*/
transition-duration: 1s;
/*设置动画速率*/
transition-timing-function: linear;
/*设置动画延时*/
transition-delay: 0.5s;
/*综合写法*/
/*transition: all .5s linear;*/
}
.one:hover{
width: 400px;
height: 400px;
opacity: 0.5;
}
input:first-of-type{
width: 300px;/*需要初始化才能使transition生效*/
height: 30px;
outline: none;
border: solid 5px red;
transition: all .5s linear;
}
/*焦点选择器*/
input:first-of-type:focus{
width: 600px;
height: 60px;
background-color: pink;
border-color: yellow;
}
input:last-of-type{
transition: all .5s linear;
position: relative;
top: 0;
}
/*checked选中*/
input:last-of-type:checked{
/*margin-top: 200px;*/
top: 200px;
}
/*----------------------------*/
/*媒介触发动画*/
@media only screen and (max-width: 1300px) {
.one{
background-color: red;
}
}
</style>
</head>
<body>
<div class="one"></div>
<input type="text" />
<input type="checkbox" />
</body>
</html>
<!--过渡动画
1.需要触发才会执行 例如hover focus js @media等
2.过渡动画没有动画次数 一触发就执行一次
3.
-->

运行结果:
初始界面

鼠标放在box上
鼠标撤回会恢复原状

点击输入框
鼠标点空白处会恢复原状

点击单选框
再次点击会恢复原状


前端HTML transition过渡动画的使用
http://ultracode.cn/2020/10/24/HTML/前端HTML transition过渡动画的使用/
作者
Win
发布于
2020年10月24日
许可协议