1
我有this search form動畫與jQuery。問題是,當我在輸入(類.globalsearch_input
)打開後點擊搜索圖標(類.button
)時,搜索不起作用,因爲動畫覆蓋搜索操作。搜索表單不能與jQuery動畫
HTML:
<div id="header">
<div class="wrapper-simple">
<form method="get" action="">
<input type="hidden" value="">
<input type="text" value="" class="globalsearch_input" placeholder="Search...">
<input type="submit" value="" class="globalsearch_submit" >
<button type="submit" value="" class="globalsearch_submit button"></button>
</form>
</div>
</div>
的jQuery:
$(document).ready(function() {
$('.wrapper-simple button.globalsearch_submit').click(function(){
$('#statistics').hide();
$('.wrapper-simple').animate({'width':'275px'})
.end().find('.wrapper-simple input[type=text]').css({opacity: 0, visibility: "visible"}).animate({'width': '231px', opacity: 1})
.end().find('.wrapper-simple .button').animate({ 'right': '30px' })//.attr('disabled', false)
.end().find('.wrapper-simple input[type=submit]').css({'background': 'url("close.png") no-repeat center'}).animate({'marginLeft':'235px', opacity: 1}, 10).hover(function() {
$(this).addClass('close-hover');
}, function() {
$(this).removeClass('close-hover');
});
return false;
});
$('.wrapper-simple input[type=submit]').click(function() {
$('#statistics').show();
$('#statistics').delay(500).css('opacity',0).show().animate({opacity:1},100);
$('.wrapper-simple').animate({'width':'40px'})
.end().find('.wrapper-simple input[type=text]').animate({'width': '1px', opacity: 0})
.end().find('.wrapper-simple .button').animate({ 'right': '0' })//.attr('disabled', true)
.end().find('.wrapper-simple input[type=submit]').animate({'marginLeft':'0', opacity: 0}).attr('value', '');
return false;
});
});
如何停止的.button動畫在此之後打開輸入?
我試過.attr('disabled', true)
但不起作用。
任何幫助表示讚賞。
謝謝!
太謝謝你了!工作正常!但爲什麼[點擊搜索後輸入返回隱藏](http://www.fuiba.com/ux/search/ndx.html)? – 2013-02-23 18:53:03
@Fuiba,這是頁面重定向後的初始狀態 – Alexander 2013-02-24 00:09:53
啊..好的!謝謝! – 2013-02-24 10:45:36