因此,在单击这些宝丽来图像时,我将它们替换为<div class="poof"></div>
使用 jQuery 的.replaceWith()
. 我这样做的原因是显示我用 js 为该类设置样式的 poof 动画 gif 动画。
但是,在点击.polaroid
宝丽来图像时,.poof
div 每次都会替换该 html,但它的背景从未显示。
单击图像,它被.poof
div 替换,但 poof 动画不显示。
我将非常感谢有人可以帮助我弄清楚为什么会这样以及如何让动画每次都显示。
这是我的javascript:
$(function(){
var time=1;
$('.polaroid').click(function(){
$(this).replaceWith('<div class="poof"></div>');
$('.poof').css('height', $(this).height()).css('width', $(this).width()).css('background', 'transparent url(poof.gif?t='+time+') center no-repeat');
time++;
});
});
这是.poof
CSS:
.poof{
height:32px;
width:32px;
}