1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
<html>
<head>
<style type="text/css">
#nouveauMessage
{
visibility:hidden;
background-color: #66CC99;
color: black;
font-variant: small-caps;
font-family: Arial, "Arial Black", sans-serif;
text-align: center;
width: 165px;
height: 80px;
right: 10px;
bottom: 10px;
position: fixed;
}
</style>
<script type="text/javascript">
function afficher() {
var nouveau = document.getElementById("nouveauMessage");
nouveau.style.visibility = "visible";
setTimeout(function() { nouveau.style.visibility = "hidden";},5000); // tempo de 5 secondes
}
</script>
</head>
<body>
<input type="button" id="btNouveau" value="Nouveau message !" onclick="afficher()" />
<div id="nouveauMessage">
Vous-avez un nouveau message.<br />
<a href="mp.php">Voir</a>
</div>
</body>
</html> |