在jsp中加载gif图像而不是动画

时间:2017-05-30 08:26:58

标签: java jsp button gif

我在JSP中添加了一个加载gif,以便在servlet运行时单击按钮后显示。问题是gif是修复的,而不是Eclipse和谷歌Chrome上的动画。 这是我的代码:

<form action="search " method="post">
    Informationt: <input type="text" name="information"
        size="30">
    <input type="submit" value="Search"
        onclick="document.getElementById('loader').style.display = 'block';">
    <img id="loader" src="images/loader.gif" style="display: none; margin-left: auto; margin-right: auto;
    width: 100px; height: 100px; " />   
</form>

在CSS中,

#loader { }

有没有办法让它运行?

0 个答案:

没有答案