それで、私は以下の URL (761 より前の部分) のルート JS Fiddle を使用していました。リンクは次のとおりです。
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は機能しません。
その理由を知っている人はいますか?