A voir également:
- Javascript1.2 - background
- Windows 7 logon background changer - Télécharger - Thèmes & Fonds d'écran
- Background remover - Télécharger - Montage photo
- Background color css ✓ - Forum CSS
- John's background switcher - Télécharger - Suite bureautique
- Supprimer background image - Guide
1 réponse
okabeche
Messages postés
8
Date d'inscription
mardi 20 novembre 2001
Statut
Membre
Dernière intervention
22 novembre 2001
4
22 nov. 2001 à 19:04
22 nov. 2001 à 19:04
Voilà ta réponse.
<html>
<head>
<title>Untitled Document</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- debut du script
function Bckgrnd()
{
if (screen.width==800)
{
alert('vous êtes en 800x600');
document.body.background='2.jpg';
}
else if (screen.width >=1024)
{
alert('vous êtes en 1024x768 ou plus');
document.body.background='1.jpg';
}
}
// Fin du script -->
</SCRIPT>
</head>
<body onLoad="Bckgrnd()" text="#000000">
<H1>Hello</H1>
</body>
</html>
Bon courage !
<html>
<head>
<title>Untitled Document</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- debut du script
function Bckgrnd()
{
if (screen.width==800)
{
alert('vous êtes en 800x600');
document.body.background='2.jpg';
}
else if (screen.width >=1024)
{
alert('vous êtes en 1024x768 ou plus');
document.body.background='1.jpg';
}
}
// Fin du script -->
</SCRIPT>
</head>
<body onLoad="Bckgrnd()" text="#000000">
<H1>Hello</H1>
</body>
</html>
Bon courage !
23 nov. 2001 à 10:41
Où puis-je trouver une liste exhaustive des propriétés et méthodes des objets document, window, etc...
@+
Marc