我使用一个免费模板来建立一个基于 jQuery 的多图库照片组合网站。我试图在有人打开页面时默认加载三个画廊中的第一个。现在,在按下三个画廊之一的链接之一之前,什么都不会加载。以前的用户曾向教程作者询问有关同一件事的提示,但唯一得到的答案是:“您可以通过在页面上(缺少单词)之前添加到脚本上的行来添加自动播放:
$(document).ready(function()
{
$(‘#default’).click()
});
并在您的列表中添加您要默认打开的画廊的默认 ID:“”您的画廊名称“”您最好键入代码而不是复制/粘贴,因为不同的逗号会在您的脚本上出现错误“经过多次试验,我来到作者试图让我在对 jQuery 执行一系列命令之前将代码输入 .html 的结论,所以我写了这个(代码在 JavaScript 引用之后和 $(function() { 之前。如您所见,我尝试使用默认值:Nature 以通过该名称将注意力引导到画廊,但这显然不是解决方案?我会很感激我能得到正确解决方案的任何帮助。我承认我我不是编码员,可能有一个简单的解决方案,但我整晚都在努力,但无济于事。在此先感谢您的帮助。
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$('#default').click()
});
$(function() {
//setting a default page
default: "Nature"
//caching
//the main wrapper of the gallery
var $fp_gallery = $('#fp_gallery')
//the overlay when the large image is displayed
var $fp_overlay = $('#fp_overlay');
回答皮特的建议:皮特,很明显我应该更好地理解你在说什么,所以我感谢你的耐心。我试过你的解决方案,但没有骰子。只是要明确一点:默认值:自然之前的事情是我试图遵循我不理解的指示。无论如何,这是我修改的代码部分,试图遵循您的建议:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$('#Nature').trigger('click');
});
$(function() {
//caching
//the main wrapper of the gallery
Stack Overflow 不允许我加载整个代码,这些代码是由编写教程的人编写的。它说它太长了。我确实看到了您对丢失分号的评论,我当然可以修复它,但是页面已经加载并正常运行。这是我允许的尽可能多的代码:
<!-- JAVASCRIPT -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$('#Nature').trigger('click');
});
$(function() {
//caching
//the main wrapper of the gallery
var $fp_gallery = $('#fp_gallery')
//the overlay when the large image is displayed
var $fp_overlay = $('#fp_overlay');
//image loading status
var $fp_loading = $('#fp_loading');
//the next and previous buttons
var $fp_next = $('#fp_next');
var $fp_prev = $('#fp_prev');
//the close button
var $fp_close = $('#fp_close');
//the main container for the thumbs structure
var $fp_thumbContainer = $('#fp_thumbContainer');
//wrapper of jquery ui slider
var $fp_scrollWrapper = $('#fp_scrollWrapper');
//total number of images
var nmb_images=0;
//which gallery is clicked (index)
var gallery_idx=-1;
//scroller wrapper
var $fp_thumbScroller = $('#fp_thumbScroller');
//jquery ui slider
var $slider = $('#slider');
//the links of the galleries (the cities)
var $fp_galleries = $('#fp_galleryList > li');
//current image being viewed
var current = 0;
//some control flags:
//prevent fast clicks on next and previous
var photo_nav = true;
//User clicks on a city / gallery;
$fp_galleries.bind('click',function(){
$fp_galleries.removeClass('current');
var $gallery = $(this);
$gallery.addClass('current');
var gallery_index = $gallery.index();
if(gallery_idx == gallery_index) return;
gallery_idx = gallery_index;
//close the gallery and slider if opened
if($fp_thumbContainer.data('opened')==true){
$fp_scrollWrapper.fadeOut();
$fp_thumbContainer.stop()
.animate({'height':'0px'},200,function(){
openGallery($gallery);
});
}
else
openGallery($gallery);
});
//opens a gallery after cliking on a city / gallery
function openGallery($gallery){
//current gets reseted
current = 0;
//wrapper of each content div, where each image is
var $fp_content_wrapper = $fp_thumbContainer.find('.container:nth-child('+parseInt(gallery_idx+1)+')');
//hide all the other galleries thumbs wrappers
$fp_thumbContainer.find('.container').not($fp_content_wrapper).hide();
//and show this one
$fp_content_wrapper.show();
//total number of images
nmb_images = $fp_content_wrapper.children('div').length;
//calculate width,
//padding left
//and padding right for content wrapper
var w_width = 0;
var padding_l = 0;
var padding_r = 0;
//center of screen
var center = $(window).width()/2;
var one_divs_w = 0;
/*
Note:
the padding left is the center minus half of the width of the first content div
the padding right is the center minus half of the width of the last content div
*/
$fp_content_wrapper.children('div').each(function(i){
var $div = $(this);
var div_width = $div.width();
w_width +=div_width;
//if first one, lets calculate the padding left
if(i==0)
padding_l = center - (div_width/2);
//if last one, lets calculate the padding right
if(i==(nmb_images-1)){
padding_r = center - (div_width/2);
one_divs_w= div_width;
}
}).end().css({
'width' : w_width + 'px',
'padding-left' : padding_l + 'px',
'padding-right' : padding_r + 'px'
});
//scroll all left;
$fp_thumbScroller.scrollLeft(w_width);
//innitialize the slider
$slider.slider('destroy').slider({
orientation : 'horizontal',
max : w_width -one_divs_w,//total width minus one content div width
min : 0,
value : 0,
slide : function(event, ui) {
$fp_thumbScroller.scrollLeft(ui.value);
},
stop: function(event, ui) {
//when we stop sliding
//we may want that the closest picture to the center
//of the window stays centered. Uncomment the following line
//if you want that behaviour
checkClosest();
}
});
//open the gallery and show the slider
$fp_thumbContainer.animate({'height':'240px'},200,function(){
$(this).data('opened',true);
$fp_scrollWrapper.fadeIn();
});
//scroll all right;
$fp_thumbScroller.stop()
.animate({'scrollLeft':'0px'},2000,'easeInOutExpo');
//User clicks on a content div (image)
$fp_content_wrapper.find('.content')
.bind('click',function(e){
var $current = $(this);
//track the current one
current = $current.index();
//center and show this image
//the second parameter set to true means we want to
//display the picture after the image is centered on the screen
centerImage($current,true,600);
e.preventDefault();
});
}
//while the gallery scrolls we want that the slider scrolls as well
$fp_thumbScroller.scroll(function(){
$slider.slider('value',parseInt($fp_thumbScroller.scrollLeft(),10));
});
//User clicks next button (preview mode)
$fp_next.bind('click',function(){
if(photo_nav){
photo_nav = false;
navigate(1);
}
});
//User clicks previous button (preview mode)
$fp_prev.bind('click',function(){
if(photo_nav){
photo_nav = false;
navigate(0);
}
});
//User clicks next button (thumbs)
$('#fp_next_thumb').click(function(){
slideThumb(1);
});
//User clicks previous button (thumbs)
$('#fp_prev_thumb').click(function(){
slideThumb(0);
});
//User clicks close button
$fp_close.bind('click',function(){
if(!photo_nav) return;
//windows scroll if any
var windowS = $(window).scrollTop();
//the large image being viewed
var $large_img = $('#fp_preview');
//the current thumb
var $current = $fp_thumbScroller.find('.container:nth-child('+parseInt(gallery_idx+1)+')')
.find('.content:nth-child('+parseInt(current+1)+')');
//offset values of current thumb
var current_offset = $current.offset();
//the large image will animate in the direction of the center
//after that it is removed from the DOM
$large_img.stop().animate({
'top' : current_offset.top + windowS + 'px',
'left' : $(window).width()/2 - $current.width()/2 + 'px',
'width' : $current.width() + 'px',
'height' : $current.height() + 'px',
'opacity' : 0
},800,function(){
$(this).remove();
//hide the overlay, and the next, previous and close buttons
hidePreviewFunctions();
});
});
//centers an image and opens it if open is true
function centerImage($obj,open,speed){
//the offset left of the element
var obj_left = $obj.offset().left;
//the center of the element is its offset left plus
//half of its width
var obj_center = obj_left + ($obj.width()/2);
//the center of the window
var center = $(window).width()/2;
//how much the scroller has scrolled already
var currentScrollLeft = parseFloat($fp_thumbScroller.scrollLeft(),10);
//so we know that in order to center the image,
//we must scroll the center of the image minus the center of the screen,
//and add whatever we have scrolled already
var move = currentScrollLeft + (obj_center - center);
if(move != $fp_thumbScroller.scrollLeft()) //try 'easeInOutExpo'
$fp_thumbScroller.stop()
.animate({scrollLeft: move}, speed,function(){
if(open)
enlarge($obj);
});
else if(open)
enlarge($obj);
}
//shows the large image
//first we position the large image on top of the thumb
//and then, we animate it to the maximum we can get
//based on the windows size
function enlarge($obj){
//the image element
var $thumb = $obj.find('img');
//show loading image
$fp_loading.show();
//preload large image
$('<img id="fp_preview" />').load(function(){
var $large_img = $(this);
//confirm there's no other large one
$('#fp_preview').remove();
$large_img.addClass('fp_preview');
//now let's position this image on the top of the thumb
//we append this image to the fp_gallery div
var obj_offset = $obj.offset();
$large_img.css({
'width' : $thumb.width() + 'px',
'height': $thumb.height() + 'px',
'top' : obj_offset.top + 'px',
'left' : obj_offset.left + 5 + 'px'//5 of margin
}).appendTo($fp_gallery);
//getFinalValues gives us the maximum possible width and height
//for the large image based on the windows size.
//those values are saved on the element using the jQuery.data()
getFinalValues($large_img);
var largeW = $large_img.data('width');
var largeH = $large_img.data('height');
//windows width, height and scroll
var $window = $(window);
var windowW = $window.width();
var windowH = $window.height();
var windowS = $window.scrollTop();
//hide the image loading
$fp_loading.hide();
//show the overlay
$fp_overlay.show();
//now animate the large image
$large_img.stop().animate({
'top' : windowH/2 -largeH/2 + windowS + 'px',
'left' : windowW/2 -largeW/2 + 'px',
'width' : largeW + 'px',
'height' : largeH + 'px',
'opacity' : 1
},800,function(){
//after the animation,
//show the next, previous and close buttons
showPreviewFunctions();
});
}).attr('src',$thumb.attr('alt'));
}
//shows next or previous image
//1 is right;0 is left
function navigate(way){
//show loading image
$fp_loading.show();
if(way==1){
++current;
var $current = $fp_thumbScroller.find('.container:nth-child('+parseInt(gallery_idx+1)+')')
.find('.content:nth-child('+parseInt(current+1)+')');
if($current.length == 0){
--current;
$fp_loading.hide();
photo_nav = true;
return;
}
}
else{
--current;
var $current = $fp_thumbScroller.find('.container:nth-child('+parseInt(gallery_idx+1)+')')
.find('.content:nth-child('+parseInt(current+1)+')');
if($current.length == 0){
++current;
$fp_loading.hide();
photo_nav = true;
return;
}
}
//load large image of next/previous content div
$('<img id="fp_preview" />').load(function(){
$fp_loading.hide();
var $large_img = $(this);
var $fp_preview = $('#fp_preview');
//make the current one slide left if clicking next
//make the current one slide right if clicking previous
var animate_to = -$fp_preview.width();
var animate_from = $(window).width();
if(way==0){
animate_to = $(window).width();
animate_from = -$fp_preview.width();
}
//now we want that the thumb (of the last image viewed)
//stays centered on the screen
centerImage($current,false,1000);
$fp_preview.stop().animate({'left':animate_to+'px'},500,function(){
$(this).remove();
$large_img.addClass('fp_preview');
getFinalValues($large_img);
var largeW = $large_img.data('width');
var largeH = $large_img.data('height');
var $window = $(window);
var windowW = $window.width();
var windowH = $window.height();
var windowS = $window.scrollTop();
$large_img.css({
'width' : largeW+'px',
'height': largeH+'px',
'top' : windowH/2 -largeH/2 + windowS + 'px',
'left' : animate_from + 'px',
'opacity' : 1
}).appendTo($fp_gallery)
.stop()
.animate({'left':windowW/2 -largeW/2+'px'},500,function(){photo_nav = true;});
});
}).attr('src',$current.find('img').attr('alt'));
}
//show the next, previous and close buttons
function showPreviewFunctions(){
$fp_next.stop().animate({'right':'0px'},500);
$fp_prev.stop().animate({'left':'0px'},500);
$fp_close.show();
}
//hide the overlay, and the next, previous and close buttons
function hidePreviewFunctions(){
$fp_next.stop().animate({'right':'-50px'},500);
$fp_prev.stop().animate({'left':'-50px'},500);
$fp_close.hide();
$fp_overlay.hide();
}
function getFinalValues($image){
var widthMargin = 0
var heightMargin = 20;
var $window = $(window);
var windowH = $window.height()-heightMargin;
var windowW = $window.width()-widthMargin;
var theImage = new Image();
theImage.src = $image.attr("src");
var imgwidth = theImage.width;
var imgheight = theImage.height;
if((imgwidth > windowW)||(imgheight > windowH)){
if(imgwidth > imgheight){
var newwidth = windowW;
var ratio = imgwidth / windowW;
var newheight = imgheight / ratio;
theImage.height = newheight;
theImage.width= newwidth;
if(newheight>windowH){
var newnewheight = windowH;
var newratio = newheight/windowH;
var newnewwidth =newwidth/newratio;
theImage.width = newnewwidth;
theImage.height= newnewheight;
}
}
else{
var newheight = windowH;
var ratio = imgheight / windowH;
var newwidth = imgwidth / ratio;
theImage.height = newheight;
theImage.width= newwidth;
if(newwidth>windowW){
var newnewwidth = windowW;
var newratio = newwidth/windowW;
var newnewheight =newheight/newratio;
theImage.height = newnewheight;
theImage.width= newnewwidth;
}
}
}
$image.data('width',theImage.width);
$image.data('height',theImage.height);
}
//slides the scroller one picture
//to the right or left
function slideThumb(way){
if(way==1){
++current;
var $next = $fp_thumbScroller.find('.container:nth-child('+parseInt(gallery_idx+1)+')')
.find('.content:nth-child('+parseInt(current+1)+')');
if($next.length > 0)
centerImage($next,false,600);
else{
--current;
return;
}
}
else{
--current;
var $prev = $fp_thumbScroller.find('.container:nth-child('+parseInt(gallery_idx+1)+')')
.find('.content:nth-child('+parseInt(current+1)+')');
if($prev.length > 0)
centerImage($prev,false,600);
else{
++current;
return;
}
}
}
//when we stop sliding
//we may want that the closest picture to the center
//of the window stays centered
function checkClosest(){
var center = $(window).width()/2;
var current_distance = 99999999;
var idx = 0;
$container = $fp_thumbScroller.find('.container:nth-child('+parseInt(gallery_idx+1)+')');
$container.find('.content').each(function(i){
var $obj = $(this);
//the offset left of the element
var obj_left = $obj.offset().left;
//the center of the element is its offset left plus
//half of its width
var obj_center = obj_left + ($obj.width()/2);
var distance = Math.abs(center-obj_center);
if(distance < current_distance){
current_distance = distance;
idx = i;
}
});
var $new_current = $container.find('.content:nth-child('+parseInt(idx+1)+')');
current = $new_current.index();
centerImage($new_current,false,200);
}
});
</script>
再次感谢你的帮助。