1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>test</title>
</head>
<body>
<div><a href="" Onclick="return setTimeout();">tester</a></div>
<div id="message"><img id='test' src="logo.png" style="float : right; margin-top : 240px; margin-right : 40px;"/></div>
<script type="text/javascript">
setTimeout( function(){
var oMsg = document.getElementById('test');
oMsg.style.display = 'none';
}, 4000);
</script>
</body>
</html> |
Partager