jquery - Website Startup slider not working -
i working on clients website website
the first slider working don't know why not functioning. slider life wordings.
can body please check website , let me know issue here html code
<div id="splash-show"> <div class="show-slide"> <img src="http://vaionyva.com/wp-content/themes/perfekto/images/splash/yourlife.png"> <!--/show-slide--></div> <div class="show-slide"> <img src="http://vaionyva.com/wp-content/themes/perfekto/images/splash/yourlove.png"> <!--/show-slide--></div> <div class="show-slide"> <img src="http://vaionyva.com/wp-content/themes/perfekto/images/splash/thismoment.png"> <!--/show-slide--></div> <div class="show-slide"> <img src="http://vaionyva.com/wp-content/themes/perfekto/images/splash/logo.png"> <!--/show-slide--></div>
you seem using supersized wordpress.
when load website first image see "your life" slide, disappears after webpage/whole slideshow loads assume problem said image not become part of slideshow itself.
if understood question correctly can add images here in javascript:
<script type="text/javascript"> jquery(document).ready(function($) { $.supersized({ slideshow : 1, autoplay : 1, start_slide : 1, random : 1, slide_interval : 5000, transition : 1, transition_speed : 1000, new_window : 1, pause_hover : 1, stop_loop : 1, keyboard_nav : 1, performance : 1, image_protect : 1, image_path : 'http://vaionyva.com/wp-content/plugins/wp-supersized/img/', min_width : 1200, min_height : 0, vertical_center : 1, horizontal_center : 1, fit_always : 0, fit_portrait : 0, fit_landscape : 0, thumbnail_navigation : 0, thumb_links : 1, slide_counter : 0, slide_captions : 0, slides : [ {image : 'http://vaionyva.com/wp-content/themes/perfekto/images/splash/yourlife.png', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/themes/perfekto/images/splash/yourlove.png', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/themes/perfekto/images/splash/thismoment.png', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/themes/perfekto/images/splash/logo.png', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/sliders/img_0125.jpg', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/sliders/img_9668.jpg', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/sliders/img_9669.jpg', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/sliders/img_9950.jpg', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/sliders/img_9958.jpg', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/sliders/img_0122.jpg', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/sliders/img_9552.jpg', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/sliders/img_9610.jpg', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/sliders/img_9794.jpg', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/sliders/img_9937.jpg', title : '', thumb : '', url : ''}, {image : 'http://vaionyva.com/wp-content/sliders/img_9995.jpg', title : '', thumb : '', url : ''}], slide_links : 'blank', progress_bar : 0, mouse_scrub : 1 }); }); </script>
Comments
Post a Comment