Last active
November 24, 2019 06:54
-
-
Save porfidev/bae194f980f335990bdd3d7ae5555d09 to your computer and use it in GitHub Desktop.
jQuery Tutorial #5 👍Como cambiar la imagen de fondo
This file contains 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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Full Height Background Image | elporfirio.com</title> | |
<style> | |
body, html { | |
height: 100%; | |
margin: 0; | |
} | |
body { | |
height: 100%; | |
background-position: center; | |
background-repeat: no-repeat; | |
background-size: cover; | |
} | |
.clase-miku { | |
background-image: url('anime-wallpaper-3.jpg'); | |
} | |
.clase-hatsune { | |
background-image: url('anime-wallpaper-2.jpg'); | |
} | |
.clase-sonico { | |
background-image: url('anime-wallpaper-1.jpg'); | |
} | |
</style> | |
</head> | |
<body> | |
<button data-fondo="clase-hatsune">Hatsune</button> | |
<button data-fondo="clase-miku">Miku</button> | |
<button data-fondo="clase-sonico">Sonico</button> | |
<script | |
src="https://code.jquery.com/jquery-3.4.1.min.js" | |
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" | |
crossorigin="anonymous"></script> | |
<script> | |
$(function () { | |
const $body = $('body'); | |
$body.find('button').on('click', function(){ | |
const boton = $(this); | |
const clase = boton.data('fondo'); | |
aplicarClase($body, clase); | |
}); | |
// INICIALIZAR | |
aplicarClase($body, 'clase-sonico'); | |
}); | |
function aplicarClase(body, clase){ | |
body.removeClass(); | |
body.addClass(clase); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment