-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoding_seru.js
36 lines (33 loc) · 867 Bytes
/
coding_seru.js
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
$(document).ready(function () {
// Animación al pasar el mouse sobre la carta
$(".container")
.mouseenter(function () {
$(".card").stop().animate(
{
top: "-90px",
},
"slow"
);
})
.mouseleave(function () {
$(".card").stop().animate(
{
top: 0,
},
"slow"
);
});
// Mostrar el modal al hacer clic en la carta
$(".card").click(function () {
$("#modalTexto").fadeIn(); // Mostrar el modal con el texto
});
// Cerrar el modal al hacer clic en el botón 'x' o fuera del modal
$(".close").click(function () {
$("#modalTexto").fadeOut(); // Ocultar el modal
});
$(window).click(function (e) {
if ($(e.target).is("#modalTexto")) {
$("#modalTexto").fadeOut(); // Ocultar el modal si se hace clic fuera del contenido
}
});
});