This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="banner_menu"> <!-- Menu --> | |
<div id="banner"> | |
<img src="images/banner1.jpg" alt="" /> | |
<img src="images/banner2.jpg" alt="" /> | |
<img src="images/banner3.jpg" alt="" /> | |
<img src="images/banner4.jpg" alt="" /> | |
</div> | |
<div id="menu"> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="slider_amplitude"> <!-- Slider de fotos --> | |
<div id="foto_grande"> | |
<img src="images/01.jpg" alt="" /> | |
<img src="images/02.jpg" alt="" /> | |
<img src="images/03.jpg" alt="" /> | |
<img src="images/04.jpg" alt="" /> | |
<img src="images/05.jpg" alt="" /> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$('#foto_grande').after('<div id="navegacao">').cycle({ | |
pager: '#navegacao', | |
pagerAnchorBuilder: function(idx, slide) { | |
return '<div class="foto_pequena">' + | |
'<a href="#">' + | |
'<img src="' + slide.src + '" alt="" />' + | |
'</a>' + | |
'</div>'; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#navegacao{ | |
margin-top:10px; | |
} | |
#foto_grande img{ | |
width:505px; | |
height:247px; | |
} | |
.foto_pequena{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<map name="corretores_online"> | |
<area shape="circle" coords="124,58,8" alt="Venus" href="paginadestino.php" /> | |
</map> | |
<!-- Colocar o usemap na div --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.produto a').click(function(e) { | |
var produto = $('.produto').clone(true); | |
$('#produtos').append(produto[0]); | |
$('#produtos .produto_os:last, #produtos .preco_produto_os:last').val(''); | |
e.preventDefault(); | |
}); | |
$('#produtos .preco_produto_os').keyup(function() { | |
var precos_produtos_os, i, total; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var StringFormat = StringFormat || {}; | |
var Dropdown = Dropdown || {}; | |
StringFormat = { | |
tonormalized: function(string) { | |
string = string.replace(RegExp(/[ç]/g), 'c'); | |
string = string.replace(RegExp(/[áàãâä]/g), 'a'); | |
string = string.replace(RegExp(/[éèẽêë]/g), 'e'); | |
string = string.replace(RegExp(/[íìîĩï]/g), 'i'); | |
string = string.replace(RegExp(/[óòõôö]/g), 'o'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sites e Lojas Virtuais: Desenvolvemos a criação e personalização de site de acordo com os padrões e identidade visual da marca. | |
Email Marketing: Layout peça Institucional: Datas Sazonais (Natal, Ano novo, Carnaval, dia das Mães, etc...), Datas de Aniversario. | |
Layout peça Promocional: Evidenciar todas as categorias de produtos e serviços com pacotes | |
promocionais. | |
Materiais impressos: criação e produção de flyers, cartão de visita, folders, banners, brindes personalizados em geral |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.TTF | |
*.ttf | |
*.db | |
*.sql | |
*.jpg | |
*.gif | |
*.png | |
*.psd | |
*.cdr | |
jquery* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file describes the network interfaces available on your system | |
# and how to activate them. For more information, see interfaces(5). | |
# The loopback network interface | |
auto lo | |
iface lo inet loopback | |
# Primary Network | |
auto eth0 |