我的页面上现在有两个浮动图像,代码如下所示:
<html>
<head>
<style type="text/css">
#img1{
position: fixed;
left: 10px;
top: 10px;
z-index: 10;
}
#img2{
position: fixed;
right: 10px;
bottom: 100px;
z-index: 10;
}
</style>
</head>
<body>
<img src="IMAGE1.png" id="img1">
<img src="IMAGE2.png" id="img2">
</body>
</html>
但是,我希望 img2 从左侧滑入它的位置,然后留在那里,而 img1 在 img2 完成移动后立即出现。它需要在网页打开时自动发生。
我已经尝试了我所知道的,但我仍然是一个初学者,所以任何帮助将不胜感激。谢谢!
PS 如果图像可以留在那里,而有人点击每个页面(这是一个 tumblr 博客),而不是每次都重置,那将是理想的。