目前我正在使用HTML5
我正在使用marquee
标记移动我网页中的图片。这是我的代码:
<table style="height: 50px; width: 100%">
<marquee loop="infinite" scrollamount="5" BEHAVIOR="ALTERNATE">
<asp:image style="height: 300px; width: 500px" ID="Image1" ImageUrl="~/woman/a1.jpg" runat="server"></asp:image>
<asp:image style="height: 300px; width: 500px" ID="Image2" ImageUrl="~/woman/a2.jpg" runat="server"></asp:image>
<asp:image style="height: 300px; width: 500px" ID="Image3" Imageurl="~/woman/a3.jpg" runat="server"></asp:image>
<asp:image style="height: 300px; width: 500px" ID="Image4" ImageUrl="~/woman/a4.jpg" runat="server"></asp:image>
<asp:image style="height: 300px; width: 400px" ID="Image5" ImageUrl="~/woman/a5.jpg" runat="server"></asp:image>
<asp:image style="height: 300px; width: 400px" ID="Image6" ImageUrl="~/woman/a6.jpg" runat="server"></asp:image>
<asp:image style="height: 300px; width: 400px" ID="Image7" ImageUrl="~/woman/a7.jpg" runat="server"></asp:image>
<asp:image style="height: 300px; width: 400px" ID="Image8" ImageUrl="~/woman/a8.jpg" runat="server"></asp:image>
</marquee>
</table>
但我发现HTML5
不再支持marquee
标记了。有没有其他方法可以达到同样的效果?