-
-
Save allanj/4e38a402e3e676d16266c5d167db9eb3 to your computer and use it in GitHub Desktop.
Super simple way to randomly load new images on refresh via Jquery and DOM injection. Great for banners.
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> | |
<head> | |
<!--Little CSS fade in --> | |
<style> | |
.fade-in{ | |
-webkit-animation: fade-in 2s ease; | |
-moz-animation: fade-in ease-in-out 2s both; | |
-ms-animation: fade-in ease-in-out 2s both; | |
-o-animation: fade-in ease-in-out 2s both; | |
animation: fade-in 2s ease; | |
visibility: visible; | |
-webkit-backface-visibility: hidden; | |
} | |
@-webkit-keyframes fade-in{0%{opacity:0;} 100%{opacity:1;}} | |
@-moz-keyframes fade-in{0%{opacity:0} 100%{opacity:1}} | |
@-o-keyframes fade-in{0%{opacity:0} 100%{opacity:1}} | |
@keyframes fade-in{0%{opacity:0} 100%{opacity:1}} | |
</style> | |
</head> | |
<body> | |
<!--We append on this div--> | |
<div id="banner-load"></div> | |
<!--Don't forget Jquery--> | |
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js'></script> | |
<!--New images on load --> | |
<script> | |
//Add your images, we'll set the path in the next step | |
var images = ['banner-1.jpg', 'banner-2.jpg', 'banner-3.jpg', 'banner-4.jpg]; | |
//Build the img, then do a bit of maths to randomize load and append to a div. Add a touch off css to fade them badboys in all sexy like. | |
$('<img class="fade-in" src="images/' + images[Math.floor(Math.random() * images.length)] + '">').appendTo('#banner-load'); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment