我怎样才能使div“幻灯片”使用jquery达到一定的宽度?

发布于 2024-11-04 04:34:48 字数 97 浏览 1 评论 0原文

我有一个使用 jquery 缩放到图像宽度+高度的 div。我想知道是否可以让它“滑动”到宽度和高度。

因此,我想要一张漂亮的交易幻灯片,而不是立即缩放到这些尺寸。

I have a div that scales to an image width + height using jquery. I want to know if I can make it "slide" to the width and height.

So instead of just instantly scaling to those dimensions, I want a nice transaction slide.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

空名 2024-11-11 04:34:48
$('#div').animate({width:500+'px', height:500+'px'});

将 500 替换为您的尺寸

$('#div').animate({width:500+'px', height:500+'px'});

Replace 500 with your dimensions

说好的呢 2024-11-11 04:34:48

可以用“秀”吗?

$("yourSelector").show("slow");

请参阅:http://api.jquery.com/show/

You could use "show" ?

$("yourSelector").show("slow");

see: http://api.jquery.com/show/

等风来 2024-11-11 04:34:48

这取决于您想要如何为其设置动画。除了 .animate 和 .show 之外,还有

$("div").slideUp();

请参阅:http://api.jquery.com/slideUp/

$("div").slideDown("慢");

请参阅:http://api.jquery.com/slideDown/

It depends on how you want to animate it. In addition to .animate, and .show, there is also

$("div").slideUp();

see: http://api.jquery.com/slideUp/

$("div").slideDown("slow");

see: http://api.jquery.com/slideDown/

智商已欠费 2024-11-11 04:34:48

尝试一下这个

$('div').animate({'width': '+= 50'});

可能有效

Try this

$('div').animate({'width': '+= 50'});

that may work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文