-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery07-dimensiones.html
78 lines (72 loc) · 1.47 KB
/
jquery07-dimensiones.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
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Dimensiones</title>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<style>
html,body
{
background: #000;
margin:0;
padding:0;
}
header
{
display:block;
margin:0 auto;
width:365px;
}
#e1,#e2
{
background: #0080FF;
display:block;
height:100px;
margin:20px auto;
width:400px;
}
#e1
{
background: #FF0040;
height:150px;
}
#e2
{
padding:15px;
border-radius: 60px 0 60px 0;
}
p
{
margin-left: 10px;
}
</style>
<script>
$(document).on('ready',function(){
/* Ejemplo1: devuelve el ancho de la etiqueta <header> sin unidades*/
console.log($('header').width());
/*alternativa con unidades: (px) */
console.log($('header').css('width'));
/* Ejemplo2: set de width */
$('header img').width(100);
/*Ejemplo de get con height */
console.log($('#e1').height());
/* ejemplo set height*/
$('#e1').height(150);
$('#e1').slideUp(1500).delay(1000).fadeIn(1500);
$('#e1').height(100);
/* Obtener y cambiar la posición*/
var pos=$('#e2 p').position();
var pos2=$('#e2 p').offset();
console.log(pos); /* pos.left y pos.top */
console.log(pos2); /* agrega el margin y el padding*/
});
</script>
</head>
<body>
<header>
<img src="http://mtw.uclm.es/images/logoMTW.jpg" alt="CF"/>
</header>
<div id='e1'>Primer div</div>
<div id="e2"><p>Segundo div</p></div>
</body>
</html>