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
// Fluidez no corpo da página | |
body{ | |
width: 95%; | |
} | |
// Exemplo de um elemento com fluidez | |
.box{ | |
position:relative; | |
width: 35%; | |
} |
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
// Exemplo de código css para telas de no mínimo 580px e no máximo 680px | |
@media screen and (min-width: 580px) and (max-width: 680px){ | |
body{ | |
width: 95%; | |
} | |
} |
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
// Evento disparado ao pressionar ESC | |
$(document).keyup(function(e) { | |
if (e.keyCode == 27) { alert(''Você pressionou ESC'); } // esc | |
}); |
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 livros = [{ | |
"tipo" : "Ebook", | |
"nome" : "Memórias de Um Sargento de Milícias", | |
"preco" : 7.90, | |
"imagem" : "milicias.jpg", | |
"autor" : "De Almeida, Manuel Antônio", | |
"editora" : "Saraiva de Bolso", | |
"ISBN" : "3658548"}, | |
{ |
NewerOlder