目前,我网站上的动画看起来有点紧张。理想情况下,我希望页面加载,等待几秒钟,然后顺利锚定到#howgreen
然后打开手风琴。
在此网页 ( URL ) 中,它锚定到#howgreen
下面的 jQuery 并#howgreen
在 URL 中查找,如果存在,它会打开/触发/单击它以打开手风琴 ( #howgreen-text
)。如何延迟动画或使我网站上的动画更流畅地工作?
$("#howgreen").click(function () {
$(this)
.parent()
.children('#howgreen-text')
.animate({
height: 'toggle'
}, 'slow', function () {
if ($(this).parent().children('#howgreen-text').css('display') == 'block') {
$(this)
.parent()
.children('#howgreen')
.addClass("work-main-bar-active");
} else {
$(this)
.parent()
.children('#howgreen')
.removeClass("work-main-bar-active");
}
});
});
/* Anchor Open Accordions */
$(document).ready(function () {
$(function () {
if (document.location.href.indexOf('#howgreen') > -1) {
$('#howgreen')
.trigger('click');
}
});
});