Skip to content

Instantly share code, notes, and snippets.

@LouLeGrain
Created May 6, 2018 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LouLeGrain/070ccaa2978618e25d1faf74f270ac35 to your computer and use it in GitHub Desktop.
Save LouLeGrain/070ccaa2978618e25d1faf74f270ac35 to your computer and use it in GitHub Desktop.
[Background fixed JS] Mettre un background sur le fond (Bootstrap) trigger par une classe dédiée #JS
$(document).ready(function () {
if ($("#content").hasClass("displayBg")) {
$("body").css('background', 'url(bg.jpg) fixed no-repeat');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment