基本上,我希望图像从窗口的右侧一路掉到屏幕上,然后我就这样尝试了(见下面的片段)

#falling2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}

<marquee id="falling2" height="100%" direction=down scrollamount="20">
  <img src="http://via.placeholder.com/50x50">
</marquee>

但是,由于某些原因,它仍然粘在左侧。
我试着从这里解决堆栈溢出问题,但他们似乎没有解决我的问题。

最佳答案

#falling2 {
    position: absolute;
    left: 0;
    z-index: -2;
    text-align: right;
}

<marquee id="falling2" height="100%" direction=down scrollamount="20">
    <img src="http://via.placeholder.com/50x50">
</marquee>

09-18 09:05