Commit fecb73906a697c20963f3809e094190bf53a5d92
1 parent
5dd1f0ad
Exists in
master
and in
7 other branches
--no commit message
Showing
2 changed files
with
0 additions
and
55 deletions
Show diff stats
ferramentas/exemplo/index.htm
| ... | ... | @@ -1,34 +0,0 @@ |
| 1 | -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
| 2 | -<html> | |
| 3 | -<head> | |
| 4 | -<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> | |
| 5 | -<link rel="stylesheet" type="text/css" href="../../css/ferramentas.css"> | |
| 6 | -<title></title> | |
| 7 | -</head> | |
| 8 | -<body name="ancora" class="yui-skin-sam"> | |
| 9 | -<div id=fundo > | |
| 10 | - <div class="guias"> | |
| 11 | - <div class=guia id=guia1 > Guia 1 </div> | |
| 12 | - <div class=guia id=guia2 > Guia 2 </div> | |
| 13 | - <div class=guia id=guia3 > Guia 3 </div> | |
| 14 | - </div> | |
| 15 | - <span id=geral > | |
| 16 | - <div class=guiaobj id="guia1obj" style="left:0px;top:0px;text-align:left"> | |
| 17 | - <div id=men1 style="top:5px;left:0px;"> | |
| 18 | - Isto é uma mensagem | |
| 19 | - </div> | |
| 20 | - <div id=opc1 style="text-align:left;top:5px;left:0px"> | |
| 21 | - Isto também é uma mensagem | |
| 22 | - </div> | |
| 23 | - </div> | |
| 24 | - <div class=guiaobj id="guia2obj" style="display:none;left:0px;top:0px"> | |
| 25 | - <div id=coord ></div> | |
| 26 | - </div> | |
| 27 | - <div class=guiaobj id="guia3obj" style="left:0px;display:none;"> | |
| 28 | - </div> | |
| 29 | - </span> | |
| 30 | -</div> | |
| 31 | -</body> | |
| 32 | -<script src="../../pacotes/cpaint/cpaint2.inc.compressed.js" type="text/javascript"></script> | |
| 33 | -<script language="JavaScript" type="text/javascript" src="index.js"></script> | |
| 34 | -</html> |
ferramentas/exemplo/index.js
| ... | ... | @@ -1,21 +0,0 @@ |
| 1 | -parametrosURL() | |
| 2 | -mensagemAjuda("men1","") | |
| 3 | -mensagemOpcao("opc1","") | |
| 4 | -xpt = unescape(((((window.location.href).split("x="))[1]).split("&"))[0] ); | |
| 5 | -ypt = unescape(((((window.location.href).split("y="))[1]).split("&"))[0] ); | |
| 6 | - | |
| 7 | -$i("guia1").onclick = function() | |
| 8 | -{ | |
| 9 | - $i("guia1obj").style.display="block"; | |
| 10 | -} | |
| 11 | -$i("guia2").onclick = function() | |
| 12 | -{ | |
| 13 | - $i("guia2obj").style.display="block"; | |
| 14 | - $i("coord").innerHTML = "Você clicou nas coordenadas <br>x: "+xpt+"<br>y: "+ypt | |
| 15 | -} | |
| 16 | -$i("guia3").onclick = function() | |
| 17 | -{ | |
| 18 | - $i("guia3obj").style.display="block"; | |
| 19 | - alert("voce clicou na guia 3") | |
| 20 | -} | |
| 21 | - |