$(function(){
$(".cover").hide();
$("#call").click(function(){
console.log("彈出");
$(".cover").fadeIn(300,"swing");
event.stopPropagation(); //阻止冒泡觸發$(document).click()
})
$(".left-btn,.right-btn").click(function(){
console.log("關閉");
$(".cover").fadeOut(300,"swing");
})
$(document).click(function(){
console.log("關閉");
$(".cover").fadeOut(300,"swing");
})
$(".info").click(function(){return false})//取消目標頁的點擊觸發
});
