Búsqueda en el Foro:
Buscar


Autor Mensaje
Mensaje27-01-2009, 20:33 (UTC)    
Título del mensaje: [Código Javascript] Mini Imagenes Al Pasar Mouse Por Un Link

Código:
<style type="text/css">

.bulletimagestyle{ /*Absolute position bullet image. No need to modify*/
position: absolute;
left: -200px;
}

</style>

<script type="text/javascript">


//Define your bullet image(s) via arbitrary variables, where bulletimg=["imagepath", imagewidth, offsetxfromroot, offsetyfromroot]
var bulletimg1=["http://img.webme.com/pic/c/chaproducciones/001.png", 13, 2, 0]
var bulletimg2=["http://img.webme.com/pic/c/chaproducciones/002.png", 16, 4, 0]
var bulletimg3=["http://img.webme.com/pic/c/chaproducciones/003.png", 16, 4, 0]


////Stop editting here/////////////////////
var classnameRE=/(^|\s+)ddbullet($|\s+)/i //regular expression to screen for classname within element

function caloffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}

function displaybullet(linkobj){
var reltovar=window[linkobj.getAttribute("rel")]
bulletobj.setAttribute("src", reltovar[0])
bulletobj.style.left=caloffset(linkobj, "left")-reltovar[1]-reltovar[2]+"px"
bulletobj.style.top=caloffset(linkobj, "top")-reltovar[3]+"px"
bulletobj.style.visibility="visible"
}

function modifylinks(){
bulletobj=document.createElement("img")
bulletobj.setAttribute("id", "bulletimage")
bulletobj.className="bulletimagestyle"
document.body.appendChild(bulletobj)
for (i=0; i<document.links.length; i++){
if (typeof document.links[i].className=="string" && document.links[i].className.search(classnameRE)!=-1){
document.links[i].onmouseover=function(){displaybullet(this)}
document.links[i].onmouseout=function(){bulletobj.style.visibility="hidden"}
}
}
}

if (window.addEventListener)
window.addEventListener("load", modifylinks, false)
else if (window.attachEvent)
window.attachEvent("onload", modifylinks)
else if (document.getElementById || document.all)
window.onload=modifylinks

</script>
<center>_________________________________<br>
Mini Imagenes En Los Links Al Pasar El mouse<br>

<a href="http://chaproducciones.tk" class="ddbullet" rel="bulletimg1">  Chaproducciones</a><br>

<a href="http://retrasados.tk" class="ddbullet" rel="bulletimg2">Retrasados.tk</a><br>
<a href="http://retrasadosforo.tk" class="ddbullet" rel="bulletimg3">RetrasadosForo.tk</a></center><br>
<textarea rows="20" cols="50">
coloca esto por debajo de pagina:



<style type="text/css">

.bulletimagestyle{ /*Absolute position bullet image. No need to modify*/
position: absolute;
left: -200px;
}

</style>

<script type="text/javascript">


//Puedes agregar mas
bulletimg=["imagepath", imagewidth, offsetxfromroot, offsetyfromroot]
var bulletimg1=["latest_reply.gif", 13, 2, 0]
var bulletimg2=["right_arrow.gif", 16, 4, 0]
var bulletimg3=["more.gif", 16, 4, 0]


////Stop editting here/////////////////////
var classnameRE=/(^|\s+)ddbullet($|\s+)/i //regular expression to screen for classname within element

function caloffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}

function displaybullet(linkobj){
var reltovar=window[linkobj.getAttribute("rel")]
bulletobj.setAttribute("src", reltovar[0])
bulletobj.style.left=caloffset(linkobj, "left")-reltovar[1]-reltovar[2]+"px"
bulletobj.style.top=caloffset(linkobj, "top")-reltovar[3]+"px"
bulletobj.style.visibility="visible"
}

function modifylinks(){
bulletobj=document.createElement("img")
bulletobj.setAttribute("id", "bulletimage")
bulletobj.className="bulletimagestyle"
document.body.appendChild(bulletobj)
for (i=0; i<document.links.length; i++){
if (typeof document.links[i].className=="string" && document.links[i].className.search(classnameRE)!=-1){
document.links[i].onmouseover=function(){displaybullet(this)}
document.links[i].onmouseout=function(){bulletobj.style.visibility="hidden"}
}
}
}

if (window.addEventListener)
window.addEventListener("load", modifylinks, false)
else if (window.attachEvent)
window.attachEvent("onload", modifylinks)
else if (document.getElementById || document.all)
window.onload=modifylinks

</script>


solo funciona para IE
______________

Mi Banner
<a href="http://chaproducciones.at.ua"><script src="http://chaproducciones.at.ua/media/?t=video;w=468;h=60;f=http%3A%2F%2Fchaproducciones.at.ua%2FFlash%2Fheader.swf" type="text/javascript"></script></a>


Ultima edición por chaproducciones el Sab Ene 31, 2009 12:51 am; editado 1 vez
Mensaje28-01-2009, 13:12 (UTC)    
Título del mensaje:

Aquí dejo una vista previa:


Salu2!
Mostrar mensajes anteriores:   


Powered by phpBB © 2001, 2005 phpBB Group