Skip to content

Instantly share code, notes, and snippets.

@porfidev
Last active November 24, 2019 06:54
Show Gist options
  • Save porfidev/bae194f980f335990bdd3d7ae5555d09 to your computer and use it in GitHub Desktop.
Save porfidev/bae194f980f335990bdd3d7ae5555d09 to your computer and use it in GitHub Desktop.
jQuery Tutorial #5 👍Como cambiar la imagen de fondo
<!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