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
/*########################################################################*/ | |
/*###### using jQuery selector for a fast/cross-browser resolution #######*/ | |
/*########################################################################*/ | |
var totalAreas = 6, // this value is obviously arbitrary | |
winH = $(window).height, // the window height | |
top = $(window).scrollTop(), // the current scroll value | |
maxScroll = $(document).height() - winH, // the maximum scroll value | |
scrollPerc = top/maxScroll, // the current scroll percentage | |
areaPercent = 0; // init variable |
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
algoritmo "exercicio_19" | |
var x1, x2, x3, y1, y2, y3, a, b, c, area, perimetro : Real | |
tipo : caracter | |
inicio | |
escreva("Insira o valor de x1: ") | |
leia(x1) | |
escreva("Insira o valor de x2: ") | |
leia(x2) | |
escreva("Insira o valor de x3: ") | |
leia(x3) |
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
algoritmo "lista2_13" | |
var i,a,s,p:real | |
inicio | |
a <- 1 | |
i <- 1 | |
s <- 0 | |
repita |
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
@import "utils.scss"; | |
.joyride-modal-bg{ | |
z-index: 9999; | |
} | |
.joyride-tip-guide{ | |
z-index: 10000; | |
} |
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
<!doctype html> | |
<html> | |
<head></head> | |
<body> | |
<script> | |
// CRIAR UMA TABELA E ADICIONAR NO DOM | |
// criar tabela com o conteúdo de uma lista | |
var alunos = [{nome:'Deni', ra:'1420088-1'}, |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="ISO-8859-1"> | |
<title>Insert title here</title> | |
</head> | |
<body> | |
<p id="relogio"></p> | |
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
<!doctype html> | |
<html> | |
<head></head> | |
<body> | |
Hexadecimal vai de 0-9 e de A-F, | |
para ser válido, a conversão de um hexadecimal em inteiro deve | |
ser entre 0(0) e 255(F).<br> | |
Para validar o hexadecimal, é preciso checar caractere por caractere. | |
<div id="formulario"> | |
<!-- |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="ISO-8859-1"> | |
<title>Exercício 1</title> | |
</head> | |
<body> | |
<script> |
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
<html lang="pt-BR"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title></title> | |
</head> | |
<body> | |
n1: <input id="n1" type="text"><br> | |
n2: <input id="n2" type="text"><br> | |
<ul> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="ISO-8859-1"> | |
<title>Ex.01</title> | |
<script src="jquery-1.11.3.min.js"></script> | |
</head> | |
<body> | |
seletores: | |
tr:odd - ímpar (vermelho) |
OlderNewer