php
  • html
  • 2015-01-15 135 views 0 likes 
    0

    所有 我有我的網站上 這裏一些按鈕圖像是代碼:加載圖像的PHP/HTML

    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

    爲什麼要生成使用PHP DOM?你可以使用js來做到這一點。如果你使用javascript,你可以很容易地做你想做的(顯示進度條) – hamed

    +1

    爲什麼使用PHP或JS,爲什麼不只是簡單的'O HTML? – atmd

    +0

    通常要做到這一點,網絡採取「估計時間」pe:如果100kb的圖片花費0.5秒,則計算更多圖片/ kb。如果有人知道你的問題的真正解決方案,我也感興趣。 – TiGreX

    回答

    0

    使用輸入型圖像的onload與屬性附加傷害。

    <input type="image" onload="hideProgressCircle();"> 
    

    創建js函數來隱藏進度圈hideProgressCircle()並儘快顯示它。

    http://www.w3schools.com/tags/att_input_type.asp http://www.w3schools.com/jsref/event_onload.asp

    相關問題