The problem is that the slider does not display correctly when the user first visits the site. When testing, the slider worked fine. 
Or, in fact, there was a problem that it will not load the first time you visit the page, but then it will appear when (and only when) you refresh the page. But otherwise, a slider appears, but not images 
I looked at the Zurb documentation in the Zurbs documentation for the Orbit slider and they have a sample file. This original demo file has a link above the images (which I deleted) 
Then I searched more on Google using a phrase about this topic, using the keyword “orbit preload images” and found “One Solution” with the preload function. Below is the code I used to preload (I just changed the path to the images)
<script language="javascript"> function preload(arrayOfImages) { $(arrayOfImages).each(function(){ $('<img/>')[0].src = this; }); } preload([ '../images/products/mill/slider/dentist.jpg', '../images/products/mill/slider/side.jpg', '../images/products/mill/slider/before.jpg', '../images/products/mill/slider/after.jpg', '../images/products/mill/slider/radio.jpg' ]); </script>
I went ahead and added a script, but it still does not load. The full code for this page can be viewed on Gist on GitHub
The code for installing the image slider can be viewed in Gist on GitHub
The site is hosted on a server located in a .net environment that does not support php.
source share