Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

W3.CSS 动画








动画很有趣!
动画很有趣!
动画很有趣!
动画很有趣!
动画很有趣!
动画很有趣!
动画很有趣!

W3.CSS 动画类

W3.CSS 提供以下用于动画的类

定义
w3-animate-top 从顶部滑入元素(从 -300px 到 0)
w3-animate-bottom 从底部滑入元素(从 -300px 到 0)
w3-animate-left 从左侧滑入元素(从 -300px 到 0)
w3-animate-right 从右侧滑入元素(从 -300px 到 0)
w3-animate-opacity 在 0.8 秒内将元素的不透明度从 0 动画到 1
w3-animate-zoom 将元素的大小从 0 动画到 100%
w3-animate-fading 将元素的不透明度从 0 动画到 1,再从 1 动画到 0(淡入 + 淡出)
w3-spin 将元素旋转 360 度

顶部动画

w3-animate-top 类将元素从顶部滑入(从 -300px 到 0)

示例

<div class="w3-container">
  <h1 class="w3-center w3-animate-top">动画很有趣!</h1>
</div>
自己尝试 »


底部动画

w3-animate-bottom 类将元素从底部滑入(从 -300px 到 0)

示例

<div class="w3-container">
  <h1 class="w3-center w3-animate-bottom">动画很有趣!</h1>
</div>
自己尝试 »

左侧动画

w3-animate-left 类将元素从左侧滑入(从 -300px 到 0)

示例

<div class="w3-container">
  <h1 class="w3-center w3-animate-left">动画很有趣!</h1>
</div>
自己尝试 »

右侧动画

w3-animate-right 类将元素从右侧滑入(从 -300px 到 0)

示例

<div class="w3-container">
  <h1 class="w3-center w3-animate-right">动画很有趣!</h1>
</div>
自己尝试 »

淡入元素

w3-animate-opacity 类在 0.8 秒内将元素的不透明度从 0 动画到 1。

使用 w3-animate-opacity 类淡入元素

示例

<div class="w3-animate-opacity">..</div>
自己尝试 »

缩放元素

w3-animate-zoom 类将元素的大小从 0 动画到 100%。

使用 w3-animate-zoom 类缩放元素

示例

<div class="w3-animate-zoom">..</div>
自己尝试 »

旋转元素

w3-spin 类将元素旋转 360 度

示例

<div class="w3-spin">..</div>
自己尝试 »

无限淡入淡出

w3-animate-fading 类每 10 秒淡入淡出元素一次(持续不断)

淡入淡出动画

示例

<div class="w3-animate-fading">..</div>
自己尝试 »

淡入所有

示例

<img class="w3-animate-top" src="img_01.jpg">
<img class="w3-animate-zoom" src="img_02.jpg">
<img class="w3-animate-left" src="img_03.jpg">
<img class="w3-animate-bottom" src="img_04.jpg">
自己尝试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.