Animate Plus高性能 JavaScript 库

联合创作 · 2023-10-02 16:56

Animate Plus 是一个高性能 JavaScript 库,它能帮助你建立动态 CSS 属性和 SVG 属性。Animate Plus 是非常适合快速 UI 交互的,同时也适合台式和移动设备上更长的动画序列。

示例代码:

<!doctype html>
<title>Example</title><style>  
div {
    display: none;
    width: 100px;
    height: 100px;
    background: black;   }
</style>
<div></div>
<div></div>

<script src=animate.min.js></script><script>  
animate({
    el: "div",
    scaleX: 2,
    begin: show  });
  function show(elements) {
    elements.forEach(function(el) 
  { el.style.display = "block"; });
  }</script>
浏览 5
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报