摘要:实现了 JQuery 选项卡。只是想为选项卡添加效果。
HTML 代码:
<div id=tabs >
<ul>
<li><a href="#div1"><span>Div1</span></a></li>
<li><a href="#div2"><span>Div2</span></a></li>
<li><a href="#div3"><span>Div3</span></a></li>
</ul>
<div id=div1 ></div>
<div id=div2 ></div>
<div id=div3 ></div>
</div>
jQuery代码:
$(document).ready(function() {
$("#tabs").tabs();
});
这可以很好地实现选项卡 GUI 并创建选项卡式界面。我现在想实现一个效果。例如'blind'、'bounce'、'clip'、'drop'、'explode'、'fold'、'highlight'、'puff'、'pulsate'、'scale'、'shake'、'size'、'幻灯片','转移'。
我该怎么做?从我读过的文档中:
$("#tabs").tabs(
//here is where there should be implementation of the effect
"#div1",{effect:'explode'}
"#div2",{effect:'explode'}
"#div3",{effect:'explode'}
);
});
这段代码对进一步的动画没有任何建设性的作用。
试过
$("#div1"){effect:'effectname' 'effectproperties' }
但这也是无效的。
他们从确实有效的文档中提供了一个示例:
$("#tabs").tabs(
//here is where there should be implementation of the effect
{ fx: { opacity: 'toggle' } }
);