Créer un rellover en CSS ?

Résolu/Fermé
azsqazsq Messages postés 172 Date d'inscription mardi 22 mai 2007 Statut Membre Dernière intervention 2 septembre 2009 - 3 août 2007 à 14:53
azsqazsq Messages postés 172 Date d'inscription mardi 22 mai 2007 Statut Membre Dernière intervention 2 septembre 2009 - 3 août 2007 à 15:28
Bonjour,

je voudrai créer un rellover en CSS avec une image qui change au passage de la souris .
Mais j'ai quelques probleme pour le code !

Si quelqu'un pourrait me donner le code XHTMl et CSS se serait bien avec les deux images appelés :
image_1.jpg et image_2.jpg

Merci d'avance !
A voir également:

3 réponses

RAD ZONE Messages postés 5230 Date d'inscription samedi 20 janvier 2007 Statut Contributeur Dernière intervention 17 août 2024 1 360
3 août 2007 à 15:26
SALUT

voila en XHTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta name="generator" content="pspad editor, www.pspad.com" />
    <title>
    </title>
<style type="text/css"> /*
      /*      <![CDATA[*/
a.image {
	display: block;
	width: 100px;
	height: 100px;
	background-image: url(image_1.jpg);
	background-repeat: no-repeat;
}
a.image:hover {
	background-image: url(image_2.jpg);
}
/*]]> */
</style>
  </head>
  <body>
    <a class="image" href="#nogo" title="cliquez !"></a>
  </body>
  </html>


RAD
2
Gihef Messages postés 5150 Date d'inscription mercredi 20 juillet 2005 Statut Contributeur Dernière intervention 20 février 2023 2 778
3 août 2007 à 15:22
Bonjour,

Si tu veux le code tout prêt (modifié), il faut au moins que tu nous en donnes avant.

Cependant, suis cette piste (c'est encore mieux). Tu peux t'en inspirer.
0
azsqazsq Messages postés 172 Date d'inscription mardi 22 mai 2007 Statut Membre Dernière intervention 2 septembre 2009 11
3 août 2007 à 15:28
Ok merci !
0