Jump to content

Afisare text si imagine OnMouseOver pe un text


Recommended Posts

Posted

Ciao, Vin cu o provocare...ma chinui de ceva vreme la un site si m-am impotmolit. (Sunt incepator ) Vreau sa trec cu mouseul pe un text si in acea pagina undeva sa se deschida doua "ferestre"; una distre ele sa-mi arate o poza, iar cealalta text.
Fac acest site in "BlueVoda" un editor/maker. Am reusit la trecerea cu mouse-ul sa-mi arate doar imaginea, insa nu stiu cum sa fac sa vad si textul.
 Vin cu exemplu sa fie mai usor de inteles de ambele parti in caz ca-mi explica cineva :).

Deci in program am adaugat intr-o fereastra "html" urmatorul cod:

<script language="Javascript">
<!--
function ShowPicture(id,Source) {
if (Source=="1"){
if (document.layers) document.layers[''+id+''].visibility = "show"
else if (document.all) document.all[''+id+''].style.visibility = "visible"
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible"
}
else
if (Source=="0"){
if (document.layers) document.layers[''+id+''].visibility = "hide"
else if (document.all) document.all[''+id+''].style.visibility = "hidden"
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden"
}
}
//-->
</script>
<style type="text/css">
#Style {
position:absolute;
visibility:hidden;
border:solid 1px #CCC;
padding:5px;
}
</style>

In alta fereastra "html" am adaugat alt cod in care se gaseste textul peste care trec cu mouseul:

<a href="#" onMouseOver="ShowPicture('Style',1)" onMouseOut="ShowPicture('Style',0)">SANDWICH</a>

Iar in fereastra "html" unde va aparea imaginea am adaugat urmatorul cod:

<div id="Style"><img src="calea spre poza... poza1.jpg"></div>

Mai vreau sa apara si un alt text undeva in site ... ar trebui sa mai scriu un cod intr-o alta fereastra "html", si in celelalte sa completez eventual cu codul de ID potrivit textului

..Revin.. textul peste care trec cu mouseul este o denumire de mancare "sandwich" , si va aparea poza cu sandwichul, si alaturat (la 2cm) un text cu ce contine acest sandwich.

Multumesc

Screenshot 2015-08-22 00.12.08.png

  • gaby changed the title to Afisare text si imagine OnMouseOver pe un text

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.