ui-js-animate-attribute-style.md 1.8 KB
Newer Older
Z
zengyawen 已提交
1 2 3
# 属性样式动画


Z
zengyawen 已提交
4 5 6

在关键帧(Keyframes)中动态设置父组件的width和height,实现组件变大缩小。子组件设置scale属性使父子组件同时缩放,再设置opacity实现父子组件的显示与隐藏。

Z
zengyawen 已提交
7

H
HelloCrease 已提交
8
```html
Z
zengyawen 已提交
9 10 11 12 13 14 15 16 17 18 19
<!-- xxx.hml -->
<div class="container">
  <div class="fade">
    <text>fading away</text>
  </div>
  <div class="bigger">
    <text>getting bigger</text>
  </div>
</div>
```

Z
zengyawen 已提交
20

H
HelloCrease 已提交
21
```css
Z
zengyawen 已提交
22 23 24 25 26 27 28
/* xxx.css */
.container {
  background-color:#F1F3F5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
L
luoying_ace_admin 已提交
29 30
  width: 100%;
  height: 100%;
Z
zengyawen 已提交
31
}
L
luoying_ace_admin 已提交
32
.fade {
Z
zengyawen 已提交
33 34 35 36 37 38 39
  width: 30%;
  height: 200px;
  left: 35%;
  top: 25%;
  position: absolute;
  animation: 2s change infinite friction;
}
L
luoying_ace_admin 已提交
40
.bigger {
Z
zengyawen 已提交
41 42 43 44 45
  width: 20%;
  height: 100px;
  background-color: blue;
  animation: 2s change1 infinite linear-out-slow-in;
}
L
luoying_ace_admin 已提交
46
text {
Z
zengyawen 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
  width: 100%;
  height: 100%;
  text-align: center;
  color: white;
  font-size: 35px;
  animation: 2s change2 infinite linear-out-slow-in;
}
/* 颜色变化 */
@keyframes change{
  from {
    background-color: #f76160;
    opacity: 1;
  }
  to {
    background-color: #09ba07;
    opacity: 0;
  }
}
/* 父组件大小变化 */
L
luoying_ace_admin 已提交
66
@keyframes change1 {
Z
zengyawen 已提交
67 68 69 70 71 72 73 74
  0% {
    width: 20%;
    height: 100px;
  }
  100% {
    width: 80%;
    height: 200px;
  }
L
luoying_ace_admin 已提交
75
}
Z
zengyawen 已提交
76
/* 子组件文字缩放 */
L
luoying_ace_admin 已提交
77 78 79
@keyframes change2 {
  0% {
    transform: scale(0);
Z
zengyawen 已提交
80 81 82 83 84 85 86 87
  }
  100% {
    transform: scale(1.5);
  }
}
```


Z
zengyawen 已提交
88 89
![zh-cn_image_0000001217168141](figures/zh-cn_image_0000001217168141.gif)

Z
zengyawen 已提交
90

H
HelloCrease 已提交
91
> **说明:**
92
> - animation取值不区分先后,duration (动画执行时间)/ delay (动画延迟执行时间)按照出现的先后顺序解析。
H
HelloCrease 已提交
93
>
94
> - 必须设置animation-duration样式,否则时长为0则不会有动画效果。当设置animation-fill-mode属性为forwards时,组件直接展示最后一帧的样式。