Tutoriel comment mapper une image avec Dream

Fermé
raffaele - 30 juin 2007 à 15:08
RAD ZONE Messages postés 5205 Date d'inscription samedi 20 janvier 2007 Statut Contributeur Dernière intervention 19 avril 2020 - 30 juin 2007 à 17:21
Bonjours a tous je recherche un tutoriel sur comment mappée une image avec Dreamweaver 8

Merci de votre aide.

Raffaële

4 réponses

baladur13 Messages postés 44244 Date d'inscription mercredi 11 avril 2007 Statut Modérateur Dernière intervention 24 mars 2023 13 395
30 juin 2007 à 15:25
bonjour Raffaele
Google est ton ami....
Une piste:
http://www.kachouri.com/tuto/tuto-92-dreamweaver-8--le-gestionnaire-de-sites-et-fichiers.html
d'autres:
https://www.google.fr/search?sourceid=navclient&hl=fr&ie=UTF-8&rlz=1T4DAFR_frFR211&q=tutorial+Dreamweaver+8+&gws_rd=ssl
Salut
0
Baladur13 Merci pour ton aide mais sur google j'ai chercher j'ai pas trouver
0
gryzzly Messages postés 4607 Date d'inscription lundi 7 novembre 2005 Statut Contributeur Dernière intervention 24 octobre 2020 1 323
30 juin 2007 à 17:13
0
RAD ZONE Messages postés 5205 Date d'inscription samedi 20 janvier 2007 Statut Contributeur Dernière intervention 19 avril 2020 1 347
30 juin 2007 à 17:21
SALUT
voila un exrmple d image map en css
<style type="text/css">
      <!--
      #image {
      width : 576px;
      height: 432px;
      background: url(Ton image.jpg)  no-repeat;
      }
      #zone1 {
      float: left;
      width : 150px;
      height: 100px;
      margin-left: 220px;
      margin-top: 30px;
      border: 1px dotted white;
      }
      #zone2 {
      float: left;
      width : 100px;
      height: 200px;
      margin-left: 50px;
      margin-top: 100px;
      border: 1px dotted white;
      }
      #image a span {
      position: absolute;
      left: -500em;
      top: -500em;
      text-indent: -500em;
      }
      -->
    </style>
  </head>
  <body>

    <div id="image">
      <a id="zone1" href="#" title="zone 1 ">
        <span>
          intitulé du lien 1
        </span></a>
      <a id="zone2" href="#" title="zone 2 ">
        <span>
          intitulé du lien 2
        </span></a>
    </div>

    <p>
      Les zones cliquables ont été volontairement entourées d'une bordure pour pouvoir les visualiser.<br />
     
    </p>
  </body>


RAD
0