Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的博客上发布了一堆动画 gif,我想在每个图像上添加一个播放按钮,以便在单击它们时能够播放它们。
您将需要两张图片。一个只是第一帧的图像,没有动画。然后,连接点击以用您的动画图像替换该静态图像。
像这样:
$(function(){ $('#StaticImage').click(function(){ $(this).attr('src', 'animated_file.gif'); }); });
帖子之间?