0
所以我使用此代碼進行平滑滾動。平滑滾動衝突css3
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 6000);
return false;
}
}
});
});
但我無法打開我的形式,它是動畫,其具有與
<a id="open" href="#content">Open</a>
我必須點擊才能打開(動畫)該按鈕的信封打開按鈕輸入CSS信封消息。有小費嗎?