我剛剛開始使用Jquery,我很喜歡它,但是我遇到了一個問題,我無法包住頭。點擊鏈接後jquery動畫無法正常工作
我已經實現了一個我購買的插件,它創建了一個拇指網格,然後您可以過濾屬性。 (槽李類)
此外,我寫了一段代碼,展開點擊div。這兩個工作完美,直到菜單使用(按屬性過濾)我明白這可能聽起來有點模糊,直到你看到它,所以這裏的鏈接: http://media-surfer.nl/test
如果你需要粘貼在這裏的所有代碼,我會做所以,但由於這是相當多的我想最好保持概述並訪問鏈接。
我真的爲了我的生活無法弄清楚這一點,所以任何幫助,非常感謝! 由於一噸提前:)
這裏是我寫的代碼:
<!-- collapse expand jquery -->
<script type="text/javascript">
$(document).ready(function(){
$(".inhoud").hide();
$(".show_hide").show();
$('.show_hide').click(function(event) {
$(".inhoud").parent().animate({
width: '160'
}, 500, function() {
// Animation complete.
});
var $inhoud = $(this).next(".inhoud");
if($inhoud.hasClass("active"))
{
$(this).parent().animate({
width: '160'
}, 500, function() {
// Animation complete.
});
$inhoud.removeClass("active");
} else {
$(this).parent().animate({
width: '769'
}, 500, function() {
// Animation complete.
});
$inhoud.addClass("active");
}
});
});
</script>
<!-- collapse expand jquery -->
後的HTML標記還... – 2013-04-20 09:44:54