Query Update
I provided a response to the query below, however, I am experiencing some lag and a noticeable stepped transition between images. Can anyone offer advice on how to optimize this issue?
Perhaps it would be better to go back to using a static image that is randomly selected and displayed until the page is refreshed.
Inquiry
I am interested in learning if there is a way, or if someone has a working example, to blur a background image (possibly for a background slideshow).
The current setup I have goes through 12 images, each being shown for 10 seconds before transitioning to the next one. I would like to explore the option of blurring the background if feasible. In instances where the image needs to remain static, I would like it to select an image at random from a predefined list.
The code snippet below functions as intended (blur.js is included but not functioning as expected).
I have also tagged this with css3 as I understand that certain CSS3 properties can create a blur effect.
<script src="/js/jquery.js"></script>
<script src="/js/backstretch.js" type="text/javascript"></script>
<script src="/js/blur.js"></script>
<script>
$.backstretch([
"https://download.unsplash.com/photo-1428604467652-115d9d71a7f1",
"https://download.unsplash.com/photo-1428591501234-1ffcb0d6871f",
"https://download.unsplash.com/photo-1423882503395-8571951e45cc",
"https://download.unsplash.com/photo-1422433555807-2559a27433bd",
"https://download.unsplash.com/photo-1420819453217-57b6badd9e19",
"https://download.unsplash.com/photo-1414912925664-0c502cc25dde",
"https://download.unsplash.com/reserve/IPEivX6xSBaiYOukY88V_DSC06462_tonemapped.jpg",
"https://download.unsplash.com/reserve/fPuLkQNXRUKI6HQ2cMPf_IMG_4761.jpg",
"https://download.unsplash.com/photo-1425136738262-212551713a58",
"https://download.unsplash.com/photo-1425036458755-dc303a604201",
"https://download.unsplash.com/photo-1422640805998-18a4dd89bec2",
"https://download.unsplash.com/reserve/Ept9mCvnTiahpYXPi9Ej_DSC_0010.jpg"
], {duration: 3000, fade: 1000});
</script>