-
Notifications
You must be signed in to change notification settings - Fork 0
/
specs.html
68 lines (65 loc) · 3.94 KB
/
specs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<title>Tudo sobre o Google Glass</title>
<link rel="stylesheet" href="css/estilo.css" />
<link rel="stylesheet" href="css/specs.css" />
<script language="javascript" src="javascript/funcoes.js"></script>
</head>
<body>
<div id="interface">
<header id="cabecalho">
<hgroup>
<h1>Google Glass</h1>
<h2>A revolução do Google está chegando</h2>
</hgroup>
<img id="icone" src="imagens/especificacoes.png" />
<nav id="menu">
<h1>Menu Principal</h1>
<ul>
<li onMouseOver="mudaFoto('imagens/home.png')" onMouseOut="mudaFoto('imagens/especificacoes.png')"><a href="index.html" target="self">Home</a></li>
<li onMouseOver="mudaFoto('imagens/especificacoes.png')" onMouseOut="mudaFoto('imagens/especificacoes.png')"><a href="specs.html" target="self">Especificações</a>
</li>
<li onMouseOver="mudaFoto('imagens/fotos.png')" onMouseOut="mudaFoto('imagens/especificacoes.png')"><a href="fotos.html" target="self">Fotos</a></li>
<li onMouseOver="mudaFoto('imagens/multimidia.png')" onMouseOut="mudaFoto('imagens/especificacoes.png')"><a href="multimidia.html" target="self">Multimídia</a>
</li>
<li onMouseOver="mudaFoto('imagens/contato.png')" onMouseOut="mudaFoto('imagens/especificacoes.png')">
<a href="fale-conosco.html" target="self">Fale conosco</a></li>
</ul>
</nav>
</header>
<section id="corpoFull">
<article id="noticiaPrincipal">
<header id="cabecalhoArtigo">
<hgroup>
<h3>Glass > Especificações</h3>
<h1>Raio-X no Google Glass</h1>
<h2>por Gustavo Guanabara</h2>
<h3 class="direita">Atualizado em 01/Maio/2013</h3>
</hgroup>
</header>
<p>Clique em qualquer área destacada da imagem para ter mais informações sobre os recursos do Google Glass. Qualquer ponto vermelho vai te levar a um lugar cheio de novas informações.</p>
<section id="conteudo">
<img src="imagens/glass-esquema-marcado.jpg" usemap="#meuMapa" />
<!--Para fazer mapeamento de imagens temos que interligar a tag <map> a tag <img>. E toda tag map tem que ter uma tag <area> e toda tag area tem que um atributo Shape definido.-->
<map name="meuMapa">
<area shape="rect" coords="184,202,269,260" href="google-glass.html#tela" target="janela"/>
<area shape="circle" coords="155,240,13" href="google-glass.html#camera" target="janela"/>
<area shape="poly" coords="21,139,75,212,75,244,20,165" href="google-glass.html#sensores"
target="janela"/>
<area shape="circle" coords="76,50,12" href="google-glass.html#gadgets" target="janela"/>
<!--Para se obter as informações do atributo coords tem que se usar um editor de imagens para se obter os valores precisos. Depois de inserir os valores do COORDS utilizamos o href para chamar o artigo dentro da pagina determinada através do ID. -->
</map>
<iframe scrolling="no" src="google-glass.html" id="frameSpec" name="janela"></iframe>
<!--Todo iframe deve ter um name-->
</section>
</article>
</section>
<footer id="rodape">
<p>Copyright © 2013 - by Gustavo Guanabara<br/>
<a href="http//:facebook.com/cursosemvideo" target="blank">Facebook</a> | <a href="http//:twitter.com/cursosemvideo" target="blank">Twitter</a></p>
</footer>
</div>
</body>
</html>