Bonjour
J'ai un problème d'animation d'un gif animé sous IE6.
J'utilise j2ee jsp struts java....
Quand j'affiche une première fois ma jsp , mon image est bien animée . Par contre quand je soumet la jsp (bouton submit), pendant kle traitement qui est assez long mon image n'est plus animée
Pour info cela fonctionne très bien sous firefox
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 function masquage(){ document.forms[0].style.cursor = 'wait'; document.getElementById('bloc_bouton).style.display='none'; document.getElementById('bloc_bouton_quitter').style.display='none'; document.getElementById('bloc_patienter').style.display='block'; document.getElementById('img_patienter').style.display='block'; } .... <html:submit property="action" styleClass="bouton" value="<%=Constantes.BTN_VALIDER%>" /> .... <div id="bloc_patienter" > <div id="img_patienter"> <p><img src="images/attente.gif" alt="image logo Attente" title="Attente Maj" /></p> </div> <p>Veuillez patienter pendant la mise à jour . . .<p> </div>
Merci d'avance
Partager