日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問(wèn)題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷解決方案
7.1萬(wàn)Star!超實(shí)用,60多種動(dòng)畫(huà)效果的CSS庫(kù)

簡(jiǎn)介

animate.css 是一個(gè)有趣的,跨瀏覽器的 css3 動(dòng)畫(huà)庫(kù),兼容性好,使用方便。它預(yù)設(shè)了抖動(dòng)、閃爍、彈跳、翻轉(zhuǎn)、旋轉(zhuǎn)、淡入淡出等多達(dá) 60 多種動(dòng)畫(huà)效果,幾乎包含了所有常見(jiàn)的動(dòng)畫(huà)效果。

沙洋網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)公司!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、APP開(kāi)發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開(kāi)發(fā),運(yùn)營(yíng)維護(hù)。成都創(chuàng)新互聯(lián)公司公司2013年成立到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來(lái)保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)公司。

animate.css 基于 CSS3,只兼容支持 CSS3 animate 屬性的瀏覽器,IE10+、Firefox、Chrome、Opera、Safari。

項(xiàng)目地址是:

https:// github.com/animate-css/ animate.css

安裝

  • 使用 npm 安裝:
 
 
 
 
  1. $ npm install animate.css --save 
  • 使用 yarn 安裝:
 
 
 
 
  1. $ yarn add animate.css 
  • 使用 CDN 直接引入:
 
 
 
 
  1.  
  2.   
  3.     rel="stylesheet" 
  4.     href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" 
  5.   /> 
  6.  

簡(jiǎn)單使用

  • 基本用法。安裝 animate.css 后,將以下屬性添加到中即可完成動(dòng)畫(huà)效果的創(chuàng)建。
 
 
 
 
  1. An animated element 
  • 自定義屬性。使用自定義屬性來(lái)定義動(dòng)畫(huà)持續(xù)時(shí)間、延遲,這使得它非常靈活,當(dāng)需要更改動(dòng)畫(huà)持續(xù)時(shí)間的時(shí)間,只需要為全局或本地設(shè)置一個(gè)新值。
 
 
 
 
  1. /* This only changes this particular animation duration */ 
  2. .animate__animated.animate__bounce { 
  3.   --animate-duration: 2s; 
  4.  
  5. /* This changes all the animations globally */ 
  6. :root { 
  7.   --animate-duration: 800ms; 
  8.   --animate-delay: 0.9s; 
  • 同時(shí)自定義屬性還可以動(dòng)態(tài)更改所有時(shí)間受限的屬性,可以通過(guò) JS 腳本動(dòng)態(tài)修改。
 
 
 
 
  1. // All animations will take twice the time to accomplish 
  2. document.documentElement.style.setProperty('--animate-duration', '2s'); 
  3.  
  4. // All animations will take half the time to accomplish 
  5. document.documentElement.style.setProperty('--animate-duration', '.5s'); 
  • 延遲效果:可以直接在元素的 class 屬性上添加延遲效果:
 
 
 
 
  1. Example
 
  •  
  • // animate.css 提供了這些延遲屬性: 
  • class               默認(rèn)延遲時(shí)間 
  • animate__delay-2s   2s 
  • animate__delay-3s   3s 
  • animate__delay-4s   4s 
  • animate__delay-5s   5s 
  •  
  • // 也可以通過(guò) --animate-delay 屬性進(jìn)行自定義: 
  • /* All delay classes will take 2x longer to start */ 
  • :root { 
  •   --animate-delay: 2s; 
  •  
  • /* All delay classes will take half the time to start */ 
  • :root { 
  •   --animate-delay: 0.5s; 
    • 動(dòng)畫(huà)速度:可以通過(guò)添加這些 class 來(lái)控制動(dòng)畫(huà)的速度:
     
     
     
     
    1. Example
     
  •  
  • // 速度的 class 包括這些: 
  • class            默認(rèn)速度 
  • animate__slow    2s 
  • animate__slower  3s 
  • animate__fast    800ms 
  • animate__faster  500ms 
  •  
  • // 可以通過(guò) --animate-duration 全局或本地屬性自定義動(dòng)畫(huà)時(shí)間: 
  •  
  • /* All animations will take twice as long to finish */ 
  • :root { 
  •   --animate-duration: 2s; 
  •  
  • /* Only this element will take half the time to finish */ 
  • .my-element { 
  •   --animate-duration: 0.5s; 
    • 循環(huán)效果:可以通過(guò)添加這些 class 來(lái)控制動(dòng)畫(huà)的循環(huán)次數(shù):
     
     
     
     
    1. Example
     
  •  
  • // 可供選擇的 class 有: 
  • class              循環(huán)次數(shù) 
  • animate__repeat-1  1 
  • animate__repeat-2  2 
  • animate__repeat-3  3 
  • animate__infinite  無(wú)限循環(huán) 
  •  
  • // 類似的,也可以自定義循環(huán)次數(shù): 
  • /* The element will repeat the animation 2x 
  •    It's better to set this property locally and not globally or 
  •    you might end up with a messy situation */ 
  • .my-element { 
  •   --animate-repeat: 2; 

  • 文章標(biāo)題:7.1萬(wàn)Star!超實(shí)用,60多種動(dòng)畫(huà)效果的CSS庫(kù)
    當(dāng)前路徑:http://www.5511xx.com/article/cojiccg.html