animation特效

在小程序中的使用:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<view class='test1'>
  <image src='/images/light.png'></image>
</view>
<!--星星的缩放效果-->
<view class='test2'>
  <image src='/images/star.png'></image>
</view>
 
<!--转动效果-->
<view class='test3'>
  <image src='/images/cross.png'></image>
</view>
<!--望远镜-->
<view class='test4'>
  <image src='/images/telescope.png'></image>
</view>

  

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
73
74
75
.test1{
  width: 160rpx;
  height: 160rpx;
  background-color: #188eee;
}
.test1 image{
  width: 160rpx;
  height: 160rpx;
  animation: light 1.5s infinite;
}
@keyframes light{
  from{
    transform: rotate(0deg);
  }
  80%,to{
    transform: rotate(360deg);
  }
}
 
 
/*星星特效:*/
.test2{
  width: 100rpx;
  height: 100rpx;
}
.test2 image{
  width: 100rpx;
  height: 100rpx;
  animation: star .5s linear infinite alternate
}
 
@keyframes star{
  form{
    transform: scale(1);
  }
  to{
    transform: scale(.5);
  }
}
/*转动效果:*/
.test3{
  width: 100rpx;
  height: 100rpx;
}
.test3 image{
  width: 100rpx;
  height: 100rpx;
  animation: cross 1s linear infinite;
}
@keyframes cross{
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}
.test4{
  width: 500px;
  height: 500px;
  text-align: center
}
.test4 image{
   width: 96px;
   height: 221px;
   animation: eyes 3.2s infinite;
}
@keyframes eyes{
  from,90%,to{
    transform: rotate(80deg)
  }
  40%,50%{
    transform: rotate(-60deg)
  }
}

  

 

posted @   生如逆旅,一苇以航  阅读(347)  评论(1编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· 字符编码:从基础到乱码解决
· 提示词工程——AI应用必不可少的技术
点击右上角即可分享
微信分享提示