![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
06/07/2002, 06:32
|
![Avatar de CORE](http://static.forosdelweb.com/customavatars/avatar18325_1.gif) | Usuario no validado | | Fecha de Ingreso: abril-2002 Ubicación: Merida
Mensajes: 2.165
Antigüedad: 22 años, 10 meses Puntos: 3 | |
Re: Script para botón derecho de ratón.. ayuda.. <script language=JavaScript>
<!--
//Esto es el grueso del script
/function showmenuie5(){
var rightedge=document.body.clientWidth-event.clientX
var bottomedge=document.body.clientHeight-event.clientY
if (rightedge<ie5menu.offsetWidth)
ie5menu.style.left=document.body.scrollLeft+event. clientX-ie5menu.offsetWidth
else
ie5menu.style.left=document.body.scrollLeft+event. clientX
if (bottomedge<ie5menu.offsetHeight)
ie5menu.style.top=document.body.scrollTop+event.cl ientY-ie5menu.offsetHeight
else
ie5menu.style.top=document.body.scrollTop+event.cl ientY
ie5menu.style.visibility="visible"
return false
}
function hidemenuie5(){
ie5menu.style.visibility="hidden"
}
function highlightie5(){
if (event.srcElement.className=="menuitems" ){
event.srcElement.style.backgroundColor="#0066 66" //Modificable entre " "
event.srcElement.style.color="#ffffff" //Modificable entre " "
}
}
function lowlightie5(){
if (event.srcElement.className=="menuitems" ){
event.srcElement.style.backgroundColor="" ;
event.srcElement.style.color="#ffffff" //Modificable entre " "
}
}
function jumptoie5(){
if (event.srcElement.className=="menuitems" ){
if (event.srcElement.url != ''){
if (event.srcElement.getAttribute("target") !=null)
window.open(event.srcElement.url,event.srcElement. getAttribute("target"))
else
window.location=event.srcElement.url
}
}
}
// -->
</script>
// Ahora entramos en la pura configuración...
//A continuación la configuración principal del menu
<style type=text/css>.cMenu {
BACKGROUND-COLOR: #006CAA; BORDER-BOTTOM: #000000 2px solid; BORDER-LEFT: #000000 2px solid; BORDER-RIGHT: #000000 2px solid; BORDER-TOP: #000000 2px solid; COLOR: #00000; CURSOR: default; FONT-FAMILY: Verdana; FONT-SIZE: 8pt; FONT-WEIGHT: normal; LINE-HEIGHT: 14px; POSITION: absolute; VISIBILITY: hidden; WIDTH: 100px
} sigue --> |