css淡入淡出_CSS淡入淡出

更新时间:2023-07-28 04:22:36 阅读: 评论:0

css淡⼊淡出_CSS淡⼊淡出
css淡⼊淡出
Web developers have been using fade ins and fade outs (basic animation) on their website for years, but the effect needed to be accomplished using JavaScript becau CSS didn't have the capability to complete animations.  The tides have turned: CSS fading is now possible thanks to .  Let's take a look basic CSS fading animations!
Web开发⼈员多年来⼀直在其⽹站上使⽤淡⼊和淡出(基本动画),但是必须使⽤JavaScript才能达到效果,因为CSS⽆法完成动画。 潮流已经转变:由于现在CSS褪⾊成为可能。 让我们看⼀下基本CSS淡⼊淡出动画!
CSS FadeIn和FadeOut (CSS FadeIn and FadeOut)
The principle behind fading is animating opacity, so the transition will address just that property:
淡⼊淡出的原理是动画不透明度,因此过渡将仅处理该属性:
/* fades in upon hover */
.fadeIn {
opacity: 0;
}
.fadeIn:hover {
opacity: 1;
阿巴达}
The example above illustrates a CSS fade in, while the example below illustrates a fade out:
上⾯的⽰例说明了CSS淡⼊,⽽下⾯的⽰例说明了淡出:
回报作文600字>刷子李/* fades in upon hover */
.fadeIn {
opacity: 1;
脾胃虚弱怎样调理}
.fadeIn:hover {
opacity: 0;
}
爱跳舞的女孩The examples above illustrate CSS fades during hover states, but what if you want to fade an element in or out without relying on u interactions. In this ca, CSS animations are the better call:
上⾯的⽰例说明了在悬停状态下CSS淡⼊,但是如果要在不依赖于使⽤交互的情况下淡⼊或淡出元素该怎么办。 在这种情况下,最好使⽤CSS动画:
/* basic fadein */
@keyframes fadeIn {
0% { opacity: 0 }
100% { opacity: 1 }
}
.fadeIn {
大清地图animation-name: fadeIn;
opacity: 1;
}
变速自行车变速器怎么调山楂干怎么吃Add the fadeIn class to the element you'd like to fade in (via JavaScript) and the job is done! A fade out would simply be the inver of the code above.
将fadeIn类添加到您要淡⼊的元素(通过JavaScript)中,⼯作就完成了! 淡出只是上⾯代码的反函数。
CSS fade animations are child's play the days.  CSS is has advanced quickly and there's no need to u JavaScript the days.  U CSS transitions and fading is easy!
⽬前,CSS淡⼊淡出动画是⼉童游戏。 CSS的发展很快,如今已经不需要使⽤JavaScript。 使⽤CSS过渡,褪⾊很容易!
翻译⾃:
css淡⼊淡出

本文发布于:2023-07-28 04:22:36,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1121109.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:淡出   动画   作文   下淡   交互
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图