Jump to content


rusber

Member Since 31/12/2005
Offline Last Active 21/02/2006, 11:02
-----

Posts I've Made

In Topic: O Fórum É Para Mim...

21/02/2006, 10:43

No infindável deserto da informação na Internet o WebFórum é um oásis de possibilidades.

por: rusber
email: rusber@bol.com.br

In Topic: Mensagem Sobre Link No Menu

09/02/2006, 20:07

Olá pessoal,

A quem interessar, consegui encontrar uma alternativa para o que quero. Como sempre, não sei se é a mais viável, mas, no momento é o que eu tenho.

Abaixo passo o código.

o style
<style type="text/css">
<!--

.tooltiptitle{COLOR: #000000; TEXT-DECORATION: none; CURSOR: Default; font-family: arial; font-weight: bold; font-size: 10pt}
.tooltipcontent{COLOR: #000000; TEXT-DECORATION: none; CURSOR: Default; font-family: arial; font-size: 10pt}

#ToolTip{position:absolute; width: 100px; top: 0px; left: 0px; z-index:4; visibility:hidden;}

-->
</style>

o script
<script language = "javascript">
<!--

var ie = document.all ? 1 : 0
var ns = document.layers ? 1 : 0

if(ns){doc = "document."; sty = ""}
if(ie){doc = "document.all."; sty = ".style"}

var initialize = 0
var Ex, Ey, topColor, subColor, ContentInfo

if(ie){
Ex = "event.x"
Ey = "event.y"

topColor = "#FCFCFC"
subColor = "#FCFCFC"
}

if(ns){
Ex = "e.pageX"
Ey = "e.pageY"
window.captureEvents(Event.MOUSEMOVE)
window.onmousemove=overhere

topColor = "#FCFCFC"
subColor = "#FCFCFC"
}

function MoveToolTip(layerName, FromTop, FromLeft, e){
if(ie){eval(doc + layerName + sty + ".top = "  + (eval(FromTop) + document.body.scrollTop))}
if(ns){eval(doc + layerName + sty + ".top = "  +  eval(FromTop))}
eval(doc + layerName + sty + ".left = " + (eval(FromLeft) + 15))
}

function ReplaceContent(layerName){

if(ie){document.all[layerName].innerHTML = ContentInfo}

if(ns){

with(document.layers[layerName].document) 
{ 
   open(); 
   write(ContentInfo); 
   close(); 
}

}

}

function Activate(){initialize=1}
function deActivate(){initialize=0}

function overhere(e){
if(initialize){

MoveToolTip("ToolTip", Ey, Ex, e)
eval(doc + "ToolTip" + sty + ".visibility = 'visible'")
}

else{
MoveToolTip("ToolTip", 0, 0)
eval(doc + "ToolTip" + sty + ".visibility = 'hidden'")
}
}
function EnterContent(layerName, TTitle){

ContentInfo = '<table border="0" width="110" cellspacing="0" cellpadding="0">'+
'<tr><td width="100%" bgcolor="#000000">'+

'<table border="0" width="100%" cellspacing="1" cellpadding="0">'+
'<tr><td width="100%" bgcolor='+topColor+'>'+

'<table border="0" width="90%" cellspacing="0" cellpadding="0" align="center">'+
'<tr><td width="100%">'+

'<font class="tooltiptitle">&nbsp;'+TTitle+'</font>'+

'</td></tr>'+
'</table>'+

'</td></tr>'+

'<tr><td width="100%" bgcolor='+subColor+'>'+

'<table border="0" width="90%" cellpadding="0" cellspacing="1" align="center">'+

'<tr><td width="100%">'+

'</td></tr>'+
'</table>'+

'</td></tr>'+
'</table>'+

'</td></tr>'+
'</table>';

ReplaceContent(layerName)
}
//-->
</script>

no body
<body onmousemove="overhere()">

imediatamente abaixo do body
<div id="ToolTip"></div>

no link
<a href="endereco_aqui.htm" onMouseover="EnterContent('ToolTip','in portuguese'); Activate();" onMouseout="deActivate()">text</a><br>

Abraços

In Topic: Mensagem Sobre Link No Menu

09/02/2006, 15:17

Olá Crab,

Este link www.maujor.com.br não funcionou aqui.

Vou fazer uma pesquisa no segundo.

Enquanto isso, a imagem (vou tentar postar novamente):

In Topic: Como Criar Um Contador De Visitas?

07/02/2006, 09:28

Caso queira um falso contador, aqui vai... (script do buteco)

na head:
<script LANGUAGE="JavaScript">
      <!-- 
      var ran
      ran = Math.round(Math.random()*100000)//coloque aqui o numero que quiser
      -->
      </SCRIPT>

no corpo:
<script>
           <!-- hiding
                document.write("Você é o visitante número " + ran + ".")
           //end hiding-->
           </SCRIPT>

Abraços

In Topic: Extrair E Expor Dados De Uma Foto

06/02/2006, 07:40

Ok Thales,

Valeu muito pelo esclarecimento. Ainda não conheço o suficiente de PHP, mas isso é questão de tempo.

Vou fazer bom uso de seu código.

Abraços,

Rúsber

IPB Skin By Virteq