<map> in tabel?

Status
Niet open voor verdere reacties.

CanTBeaTme

Banned
Lid geworden
25 jul 2006
Berichten
235
de topcinaam is fout :P was bezig met tabellen enzo en mappen en jah verstrooidheid zeker :P

hoe kan ik een <map> voor een aantal paginas maken? ik bedoel dus in een css bestand...
het lijkt me niet te lukken :P dit is de map:

<img src = "images/userbar.png" usemap ="#Userbarmap" border =0>
<map name = "Userbarmap">
<area shape = rect coords = "0,25,160,0" title = "main Page"
href ="index.html"
onMouseOver ="self.status = 'main Page'; return true"
>
<area shape = rect coords = "160,0,320,25" title = "Earn some cash"
href ="money.html"
onMouseOver ="self.status = 'Earn some cash'; return true"
>
<area shape = rect coords = "320,25,480,0" title = "Download Database"
href = "database.html"
onMouseOver ="self.status = 'Download Database'; return true"
>
<area shape = rect coords = "480,0,640,25" title = "Our forum!"
href = "forum"
onMouseOver = "self.status = 'The Forum!'; return true"
>
<area shape = rect coords = "640,0,800,25" title = "Usefull Links"
href = "links.html"
onMouseOver = "self.status = 'Usefull Links!'; return true"
>

</map>
 
Laatst bewerkt:
Met javascript kan het wel, userbar.js :
PHP:
// UserBar
document.writeln(
 '<img src="images/userbar.png" usemap="#Userbarmap" border="0">' +
 '<map name="Userbarmap">' +
 '<area shape="rect" coords="0,25,160,0" title="main Page" href="index.html" onMouseOver="self.status=\'main Page\'; return true;">' +
 '<area shape="rect" coords="160,0,320,25" title="Earn some cash" href="money.html" onMouseOver="self.status=\'Earn some cash\'; return true;">' +
 '<area shape="rect" coords="320,25,480,0" title="Download Database" href="database.html" onMouseOver="self.status=\'Download Database\'; return true;">' +
 '<area shape="rect" coords="480,0,640,25" title="Our forum!" href="forum" onMouseOver="self.status=\'The Forum!\'; return true;">' +
 '<area shape="rect" coords="640,0,800,25" title="Usefull Links" href="links.html" onMouseOver="self.status=\'Usefull Links!\'; return true;">' +
 '</map>' +
 '');
Daar link je op de pagina's naar met:
PHP:
<script type="text/javascript" src="userbar.js"></script>
:)


Vr.Gr. Egel.
 
Status
Niet open voor verdere reacties.
Terug
Bovenaan Onderaan