我如何使用 jquery 将隐藏元素从 0 不透明度滑到 1
我有一个像下面这样使用 jquery 原型库的可乐:
new Effect.SlideDown(this.imageDataContainer, { sync: true, duration: this.resizeDuration, from: 0.0, to: 1.0 }),
new Effect.Appear(this.imageDataContainer, { sync: true, duration: this.resizeDuration })
此代码强制 imageDataContainer 元素从 0 不透明度滑动到 1 不透明度。
我如何使用从 jquery.com 网站新下载的 jquery 库来实现上层代码?
SlideDown 的语法如下: http://www.w3schools.com/jquery/eff_slidedown.asp
我知道slideDown如何和 fadeTo 函数在 jquery / 中工作,但我如何像上面的代码一样将它们组合起来?
我测试了下面的代码 - 但你无法更改不透明度 --DURING-- 切换:
$('#lightbox-container-image-data-box').animate({
opacity: 0,
height: 'toggle',
opacity: 1
}, 400, function() {
// Animation complete.
});
感谢 4 个关注
i have a coke like below that using jquery prototype Library:
new Effect.SlideDown(this.imageDataContainer, { sync: true, duration: this.resizeDuration, from: 0.0, to: 1.0 }),
new Effect.Appear(this.imageDataContainer, { sync: true, duration: this.resizeDuration })
this code force the imageDataContainer element to sliding Down From 0 Opacity To 1 Opacity.
how can i implement upper codes with new downloaded jquery library from jquery.com web site?
the syntax of slideDown is like this :
http://www.w3schools.com/jquery/eff_slidedown.asp
i know how slideDown And fadeTo Functions Work in jquery / but how can i combine them like the upper codes?
i test the below code - but u can not changing the opacity --DURING-- toggle :
$('#lightbox-container-image-data-box').animate({
opacity: 0,
height: 'toggle',
opacity: 1
}, 400, function() {
// Animation complete.
});
thanks 4 attention
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,请使用 animate() 。使用 animate,您可以为元素上任意数量的属性设置动画。
在此处查看以下代码的演示:http://jsfiddle.net/chrisramakers/8ewEp/
Use animate() for that. With animate you can animate any arbitrary number of properties on an element.
Check a demo of the code below here: http://jsfiddle.net/chrisramakers/8ewEp/