当用户单击“关闭”时,我试图让该网站上的“告诉朋友按钮”返回其原始位置。我现在开始工作了,但是过渡很糟糕。当您单击关闭时,该按钮会出现在父 div 下方,然后再占据其原始位置。功能如下图:
$(document).ready(function() {
$(".tell").click(function () {
$("DIV#tellform").show("slide", { direction: 'left' }, 2000);
$(".tell").hide("fade", {}, 1);
});
$(".closer").click(function () {
$("DIV#tellform").hide("slide", { direction: 'left' }, 2000);
$(".tell").show("fade", {}, 1);
});
});