因此,我使用了以下 URL 的根 JS Fiddle(761 之前的部分),我得到了一个很好的设计,完全符合我的要求。这是链接:
单击此处查看整个 JSFiddle,这里是 Javascript 代码:
$('#trigger').click( function() {
if ($('#popout').hasClass('hidden')) {
$('#popout').removeClass('hidden');
showPopout();
}
else {
$('#popout').addClass('hidden');
hidePopout();
}
});
function showPopout() {
$('#popout').animate({
top: 49
}, 'slow', function () {
$('#trigger span').html('|||'); //change the trigger text at end of animation
});
}
function hidePopout() {
$('#popout').animate({
top: -150
}, 'slow', function () {
$('#trigger span').html('|||'); //change the trigger text at end of animation
});
}
但是当我在这里实现它时:http: //m.bwpcommunications.com/agency.php它不起作用。
有谁知道为什么会这样?