gpt4 book ai didi

jQuery Slide CSS 元素移出减少不透明度

转载 作者:太空宇宙 更新时间:2023-11-04 14:59:21 25 4
gpt4 key购买 nike

您好,我正在尝试滑出一个 CSS 元素,逐渐消除不透明度,直到它完全消失。

例如,我想将文本向右滑动,从而在滑动时降低不透明度,直到完全消失。

//JQuery
$(document).ready(function() {
$('.heading1').animate({marginRight:"20px",opacity:0},500)
})
//HTML
<div class="sliderContainer">

<a class="heading1">Text</a>

</div>

//CSS
.heading1 {
position:relative;
}

我已经试过了,但它并没有真正滑出,就像在屏幕上移动一样。它只是淡出。有什么想法吗?

我希望能够在屏幕内外设置动画以降低不透明度。

最佳答案

使用整数(20)代替字符串(20px):

$(document).ready(function() {
$('.heading1').animate({'margin-right':20,opacity:0},500);
})

关于jQuery Slide CSS 元素移出减少不透明度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16625009/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com