将效果应用于 jquery-ui 选项卡
是否可以将效果应用于 jquery-ui 选项卡,我还没有看到任何示例,并且我相当确定如果可能的话,以下内容是不正确的:
<script type="text/javascript">
$(function() {
$("#tabs").tabs();
$("#tabs").effect(slide,options,500,callback);
});
</script>
Is it possible to apply an effect to a jquery-ui tab, I haven't seen any examples of it, and I'm fairly sure that if it is possible the following is incorrect:
<script type="text/javascript">
$(function() {
$("#tabs").tabs();
$("#tabs").effect(slide,options,500,callback);
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您希望在更改标签时发生效果,您可以执行类似的操作 使用
fx
选项:淡入淡出 + 幻灯片如下所示:
这会将效果应用于选项卡本身,
You can do something like this, if you want the effect to happen when you change tags using the
fx
option:A fade + slide would be like this:
This applies the effects to the tabs themselves, you can take it for a spin here.