所有 我的网站上有一些按钮图像 这是代码:
echo "<div class=\"contenitoreeventi\">
<form method='get' action='paginaevento.php'>
<input type='submit'
style='background-image: url(../fotoluoghi/$foto[$i].png);'
class='fotoevento'
name='idfesta'
value='$idfesta[$i]'/>
</form>
";
我想知道在加载图片时是否可以显示循环进度条,请问您能帮帮我吗?
修改
这是我试过的
echo "<div class=\"contenitoreeventi\ style='background-image: url(IMG/circularloading.gif);'>
<form method='get' action='paginaevento.php'>
<input type='submit'
style='background-image: url(../fotoluoghi/$foto[$i].png);'
class='fotoevento'
name='idfesta'
value='$idfesta[$i]'/>
</form>
";
它不起作用
答案 0 :(得分:0)
将输入类型图像与onload属性一起使用。
<input type="image" onload="hideProgressCircle();">
创建js函数以隐藏进度圈隐藏Progress Circle()并尽快显示它。
http://www.w3schools.com/tags/att_input_type.asp http://www.w3schools.com/jsref/event_onload.asp