Un petit coup de main
Fermé
Benoit
-
6 janv. 2013 à 21:03
Atropa Messages postés 1940 Date d'inscription mercredi 25 juin 2008 Statut Membre Dernière intervention 11 mai 2014 - 7 janv. 2013 à 10:27
Atropa Messages postés 1940 Date d'inscription mercredi 25 juin 2008 Statut Membre Dernière intervention 11 mai 2014 - 7 janv. 2013 à 10:27
A voir également:
- Un petit coup de main
- Bagage à main - Guide
- Jeter un coup d'oeil snap - Forum Snapchat
- Petit 1 comme ² ✓ - Forum Windows
- Ma télé s'est éteinte d'un coup - Forum Téléviseurs
- Petit 3 ✓ - Forum Word
3 réponses
Atropa
Messages postés
1940
Date d'inscription
mercredi 25 juin 2008
Statut
Membre
Dernière intervention
11 mai 2014
274
7 janv. 2013 à 09:54
7 janv. 2013 à 09:54
Bonjour,
il faut qu'il soit très précis ou c'est approximatif ?
il faut qu'il soit très précis ou c'est approximatif ?
Atropa
Messages postés
1940
Date d'inscription
mercredi 25 juin 2008
Statut
Membre
Dernière intervention
11 mai 2014
274
7 janv. 2013 à 10:27
7 janv. 2013 à 10:27
<!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> .timeOut { width: 250px; height: 80px; line-height: 80px; text-align: center; font-weight: bold; font-size: 15pt; background-color: #f5aaaa; } </style> <script type="text/javascript"> function timeOut(selector,duration,url) { duration *= 1000; var timeS = Date.now(); var ind; var inter = setInterval(function () { ind = Math.ceil((duration - (Date.now() - timeS)) / 1000); if(ind < 0) ind = 0; document.querySelector(selector).innerHTML = ind + ' seconde'+((ind > 1)? 's' : ''); if(ind == 0) { clearInterval(inter); //window.open(url); /* Pour ouvrir dans une nouvelle fenêtre (AVERTISSEMENT POPUP) */ location = url; /* Pour ouvrir dans la même page (SANS AVERTISSEMENT) */ } },100); } </script> </head> <body> <div class="timeOut"></div> <script type="text/javascript"> timeOut('.timeOut',2,'http://google.fr'); </script> </body> </html>
Pour ouvrir dans une nouvelle fenêtre ou onglet il y aura un avertissement disant que la page veut ouvrir une fenêtre popup