您似乎正在为 Wordpress 使用 Supersized。
当我加载您的网站时,我看到的第一张图片是“您的生活”幻灯片,但在网页/整个幻灯片加载后它消失了,所以我认为问题在于所述图片没有成为幻灯片本身的一部分。
如果我正确理解了您的问题,您可以轻松地在 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>