animation特效

效果如下

animation特效

实现方式如下

 在css里给要动效的元素添加样式

animation特效

下面为动画效果

animation特效

在该元素出现在视野的时候,应用动画效果

 

document.getElementById('animation1').style.visibility = "visible";

document.getElementById('animation1').style.animationName = "left";

 

 

同理可以做成接下来几种动态效果

animation特效

主要代码如下

animation特效