我有以下的jsfiddle:顯示形式,平穩過渡
我不知道我該怎麼做「上點擊」平穩過渡,所以它在頁面上逐漸顯示,而不是瞬間?
非常感謝任何幫助,小提琴的代碼如下。
[HTML]
<div class="row no-show">
<p class="left-a">
<label for="manufacturer">Manufacturer</label>
<input type="text" name="manufacturer" id="manufacturer" value="" />
</p>
<p class="middle-a">
<label for="product_code">Product Code</label>
<input type="text" name="product_code" id="product_code" value="" />
</p>
<p class="middle-b">
<label for="condition">Condition</label>
<select name="condition">
<option value="">Please Select</option>
<option value="newsealed">New & Sealed</option>
<option value="tattybox">Tatty Box</option>
<option value="openbox">Opened Box</option>
<option value="openbag">Opened Bag</option>
</select>
</p>
<p class="right-a">
<label for="quantity">Qty</label>
<input type="text" name="quantity" id="quantity" value="" />
</p>
</div>
<button id="show" class="button purple">Add More Products</button>
[jQuery的]
$("#show").click(function(){
console.log("Button clicked!");
$(".no-show").show();
});
[CSS]
.no-show{display:none;}
$(「。no-show」)。slideToggle(); - 或fadeIn(),味道的問題,我猜.. – sinisake 2014-10-22 12:14:41
使用jQuery函數'fadeIn'解決這個問題,看看http://jsfiddle.net/tz52u/19/ – 2014-10-22 12:40:11
我認爲這是更好,如果你使用切換而不是隻顯示... http://jsfiddle.net/tz52u/20/ – Nick 2014-10-22 13:02:34