我在JQuery的是新的,我發現這個鏈接:jQuery Effects如何使這個jQuery工作
,我想做一個在切換淡入淡出,並在同一時間(幻燈片漸變TOGLE幻燈片)。
這是JavaScript代碼:
的JavaScript:
jQuery.fn.slideFadeToggle = function(speed, easing, callback) {
return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);
};
,但我不知道如何使它發揮作用。下面是我的代碼只是「淡出TOGLE」的效果:
<script type="text/jscript" src="http://code.jquery.com/jquery-latest.js"></script>
<style type="text/css">
#Container
{
padding: 10px;
height: 100px;
width: 100px;
background: #e459e9;
}
</style>
<body>
<button>fadeToggle</button>
<div id="Container">
<p>Watch me fade.</p>
</div>
<script type="text/jscript">
$(document).ready(function() {
$("button:first").click(function() {
$(this).next().fadeToggle("slow");
$(this).slideDown("slow");
});
});
</script>
如果你想使用你寫的擴展,只是有'$(本)。接下來()slideFadeToggle( 「慢」);' –
爲什麼'asp.net'標記? – rickyduck