-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathej5-animaciones-css.html
59 lines (57 loc) · 1.13 KB
/
ej5-animaciones-css.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test jquery</title>
<style>
img{
width: 50vw;
}
div {
padding: 30px;
text-align: center;
}
.animar{
animation-name: rotate;
animation-duration: 1s;
animation-iteration-count: infinite;
}
@keyframes rotate {
0% {
transform: rotate(-10deg);
}
50% {
transform: rotate(10deg);
}
100%{
transform:rotate(-10deg);
}
}
</style>
</head>
<body>
<h1>Lanzar una animación con jQuery</h1>
<button>Animar</button>
<div>
<img src="smile.jpg">
</div>
<p>
Otro estándar de animación: http://greensock.com/gsap
</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('button').on('click', function() {
var imagen = $('img');
if(! imagen.hasClass('animar')) {
$(this).text('Parar');
imagen.addClass('animar');
} else {
$(this).text('Animar');
imagen.removeClass('animar');
}
});
});
</script>
</body>
</html>