• 使用CSS3动画库animate.css


    IE9及更早版本的IE浏览器都不支持css3动画
    谷歌浏览器、火狐浏览器、IE10+浏览器以及移动端浏览器等这些都支持css3动画
    animate.css内置了很多典型的css3动画
     
    用法
     
    1、首先引入animate css文件
    <head>
      <link rel="stylesheet" href="animate.min.css">
    </head>
     
    2、给指定的元素加上指定的动画样式名
    <div class="animated bounceOutLeft"></div>
    这里包括两个class名,第一个是基本的,必须添加的样式名,任何想实现的元素都得添加这个。第二个是指定的动画样式名。
     
    3、如果说想给某个元素动态添加动画样式,可以通过jquery来实现:
    $('#yourElement').addClass('animated bounceOutLeft');
     
    4、当动画效果执行完成后还可以通过以下代码添加事件
    $('#yourElement').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', doSomething);
  • 相关阅读:
    [LeetCode] Maximum Depth of Binary Tree
    C++11中常用的几个简写
    [LeetCode] Word Break
    [LeetCode] Linked List Cycle II
    sizeof
    string和整形数据之间的转换
    ASCII
    [LeetCode] Linked List Cycle
    机器学习总结-线性回归
    推荐系统初探
  • 原文地址:https://www.cnblogs.com/wuln/p/6248862.html
Copyright © 2020-2023  润新知