gpt4 book ai didi

javascript - jQuery 下一个-上一个图库按钮在结束时不停止

转载 作者:行者123 更新时间:2023-11-28 08:11:29 26 4
gpt4 key购买 nike

我构建了这个 div,它允许用户浏览相册中的图像。它首先使用 php-mysql 获取图像的文件路径,然后将行数分配给名为 array_size 的 JavaScript 变量。然后,它使用 array_size 变量创建 picture_list 数组,并为数组的每个元素分配一个文件路径。然后,它显示弹出 div,其中包含图像以及下一个、后退、关闭按钮集。目前,后退按钮在到达数组的第 0 个元素时将停止处理照片,这是可以的,但是当它到达最大元素时,下一个按钮将继续滚动数组,并且不会为以下图像分配任何值。我希望“下一个”和“后退”按钮都能在数组中旋转,但目前我不知道如何实现这一点。我已经尝试解决这个问题有一段时间了,距离推出这个野兽还有一周,所以我不能再坐以待毙了。

HTML 页面:

<html>
<head>
<style>
@import "album_style.css";
</style>
<script type="text/javascript" src="jquery-1.10.2.min.js" ></script>
<script>

$(document).ready(function(){
var array_size = 0 ;
var active_index ;
var source_image ;
$('#largeImage').hide() ;
$('#imageBackground').hide() ;
$('#gallery img').click(function(){
$('#largeImage img').attr('src',$(this).attr('src').replace('gallery','large'));
$('#largeImage').show() ;
$('#imageBackground').show() ;
active_index = parseInt( $(this).attr('value') ) ;

});
$('.next').click(function( event ){
active_index = active_index + 1 ;
max_index = array_size - 1 ;
if( active_index == array_size )
{
active_index = 0 ;
}
source_image = $('#largeImage img').attr('src') ;
var newSrc = $('#largeImage img').attr('src').replace( source_image, picture_list[ active_index ] ) ;
$('#largeImage img').attr('src', newSrc ) ;


});
$('.back').click(function( event ){
active_index = active_index - 1 ;

if( active_index < 0 )
{
active_index = array_size ;
}
source_image = $('#largeImage img').attr('src') ;
var newSrc = $('#largeImage img').attr('src').replace( source_image, picture_list[ active_index ] ) ;
$('#largeImage img').attr('src', newSrc ) ;

}) ;
$('.close').click(function(){
$('#largeImage').hide();
$('#imageBackground').hide() ;
});



});
</script>
</head>
<body>
<?php
require( 'albums_functions.php' );

draw_masthead();
gallery();



?>
</body>

</html>

PHP:

function gallery()  //displays only the first 80 photos in the database.  
{
try
{
$album_id = $_GET['id'] ;
$db = honneyconnect( ) ;
if( mysqli_connect_error() )
{
throw new Exception( "Could not connect to the database") ;
}
$query = 'select * from albums where album_id="'.$album_id.'"' ;
$albums = $db->query( $query) ;
$album_name = $albums->fetch_row();
$default_pic = $album_name[1].'/'.$album_name[2] ;
$albums->free();
$query = 'select * from photos where album_id="'.$album_id.'"' ;
$photos = $db->query( $query ) ;
if( !$photos )
{
throw new Exception( "Query returned zero results." ) ;
}
else
{
$number_of_photos = $photos->num_rows ;
echo "<script type='text/javascript'> array_size = parseInt( ".$number_of_photos." ) ;</script>" ; //figure out the size of the javascript array of photo sources
echo "<script type='text/javascript'> var picture_list = new Array( array_size ) ;</script>" ; //define the array
echo "<div id='imageBackground'></div>" ;
echo "<div id='largeImage'><input type='button' class='close' value='X'><input type='button' class='back' value='<<'><img src='".$default_pic."' ><input type='button' class='next' value='>>'></div>";
echo "<div id='gallery'>" ;
echo "<div id='thumbpanel'>" ;

if( $number_of_photos > 80 )
{
$stop = 80 ;
}
else
{
$stop = $number_of_photos ;
}
for( $i = 0; $i < $stop ; $i++ )
{
$row = $photos->fetch_row() ;
if( !$row )
{
$i = 80 ;
}
else
{
$file_path = $album_name[1]."/".$row[2] ; //provides the path for the image source
echo "<img value='".$i."' src='".$file_path."'>" ; //assigns the value for use in the jQuery scripts
echo "<script type='text/javascript'> picture_list[ ".$i." ] = '".$file_path."'</script>" ; //sends the values to the jQuery script
}
}
echo "</div></div>" ;
}
$photos->free();
$db->close();
}
catch( Exception $error )
{
echo $error ;
}
}

最佳答案

我想这对你来说已经晚了,但也可能对其他人有帮助。您可以通过 if 语句将其删除,如果图像存在,则保留按钮,否则将其删除。首先,在 php 中输出时,为 .next.back 添加属性 style="display:none;"。然后在 jquery 中执行此操作。

  if (newSRC!=='') {
$(".next,.back").show();
}else {
$(".next").hide();
$(".back").hide();
}

关于javascript - jQuery 下一个-上一个图库按钮在结束时不停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24148297/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com