When viewing on an apple device, the home.php page of my wordpress site makes a shift like movement when the slideshows transition. I've included my code below. I'm unsure if it's jquery or CSS related... any ideas? I can provide css, if needed. Thanks!
- <script>
- $(function(){
- $('.QuoteSS img:gt(0)').hide();
- setInterval(function(){
- $('.QuoteSS :first-child').fadeOut()
- .next('img').fadeIn()
- .end().appendTo('.QuoteSS');},
- 6000);
- });
- $(function(){
- $('.ServiceSS img:gt(0)').hide();
- setInterval(function(){
- $('.ServiceSS :first-child').fadeOut()
- .next('img').fadeIn()
- .end().appendTo('.ServiceSS');},
- 8000);
- });
- $(function(){
- $('.ClientSS img:gt(0)').hide();
- setInterval(function(){
- $('.ClientSS :first-child').fadeOut()
- .next('img').fadeIn()
- .end().appendTo('.ClientSS');},
- 3000);
- });
- </script>
- <div style="position:relative; float:left; clear:both; ">
- <div class="QuoteSS" >
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Quotes/quote01.png" title="MegaMarketing">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Quotes/quote02.png" title="Achieva">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Quotes/quote03.png" title="Lodging">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Quotes/quote04.png" title="OneHour">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Quotes/quote05.png" title="Physical">
- </div>
- </div>
- <div style="position:relative; float:left; ">
- <div class="ServiceSS" >
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Services/List-Strategies-Collage.png" title="List-Strategies">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Services/Print-Capablilities-Collage.png" title="Print-Capablilities">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Services/Mailing-Collage.png" title="Mailing">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Services/Database-Management-Collage.png" title="Database-Management">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Services/Creative-Collage.png" title="Creative">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Services/Analytics-Collage.png" title="Analytics">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Services/Web-Order-Collage.png" title="Web-Order">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Services/About-Primenet-Collage.png" title="About">
- </div>
- </div>
- <div style="position:relative; float:left; clear:both; top:-30px; left:10px;">
- <p style="font-size:medium;">Some of Our Clients</p>
- <div class="ClientSS" >
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/Client-TampaBay.png" title="Tampa Bay Lightning Logo">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/Client-Perkins.png" title="Perkins">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/Client-AG-Edwards.png" title="AF Edwards Logo">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/huntington_logo.png" title="Huntington">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/Client-TonyRomas.png" title="Tony Romas">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/Client-PitneyBowes.png" title="Pitney Bowes">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/Client-FamousDaves.png" title="Famouse Daves BBQ Logo">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/CAM.png" title="">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/Client-KnorrPro.png" title="KnorrPro">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/Client-Jostens.png" title="Jostens Logo">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/Client-OneHour.png" title="One Hour Heating and Air Conditioning Logo">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/FRLA_logo.png" title="">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/Sonnys.png" title="">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/DaysInn.png" title="">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/AmericanPoetry.png" title="">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/Drive.png" title="">
- <img src="http://www.primenet.com/wp-content/themes/PrimeNet2011/images/Homepage/Slideshow/Clients/Client-Carabbas.png" title="Carabbas">
- </div>
- </div>