我想知道是否有办法只使用HTML / CSS来停止html的marquee标签中的图像流。
isspace
这样的几个链接图像位于选框标记之间,我想优先在鼠标悬停时停止它们的流动。如果您认为可能,请告诉我解决方案。
提前致谢!
答案 0 :(得分:1)
你去吧
<marquee behavior="scroll" direction="left" onmouseover="this.stop();" onmouseout="this.start();"><img src="hp.jpg" width="134" height="202" style="float:left;padding-right:10px;" alt="llsdasdada"></marquee>
答案 1 :(得分:0)
试试这个: -
<marquee onmouseover="this.setAttribute('scrollamount', 0, 0);" onmouseout="this.setAttribute('scrollamount', 6, 0);">
your text here
</marquee>