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.
我是这个网站和编码的新手。我正在尝试找出如何使用 css 或 css3 在悬停时创建爆炸图像。谁能告诉我这是否可能。任何评论都会很棒。
如果您希望它在“爆炸”时分解成多个部分,我认为您不能仅使用 CSS3 来做到这一点。另一方面,如果您考虑使其非常大“爆炸”,那么这是非常可行的:
img { transition: 0.5s; } img:hover { opacity: 0; transform: scale(3) rotate(10deg); }
试试看。 好吧,我想这不是什么大爆炸,但是哦,好吧