- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个图片库,其中有一张主图片和下面的 5 个缩略图,当您单击缩略图时,图片会发生变化,这工作正常,但我还在两侧放置了两个箭头以滚动浏览图片它有点管用,但它每隔一秒就会跳过一张图片。我尝试放入警报以查看发生了什么,它们被触发了两次。
我的HTML如下:
<tr id="product_main_image">
<td colspan="5">
<img src="product_images/catalog.png" id="1">
<span id="image_left" style="bottom: 233px;"><img src="web/left_arrow.png"></span>
<span id="image_right" style="bottom: 233px;"><img src="web/right_arrow.png"></span>
</td>
</tr>
<tr id="product_thumbnail">
<td><img src="product_images/catalog.png" id="1"></td>
<td><img src="product_images/config.png" id="2"></td>
<td><img src="product_images/customers.png" id="3"></td>
<td><img src="product_images/marketing.png" id="4"></td>
<td><img src="product_images/sales.png" id="5"></td>
</tr>
我的JS如下:
$("#product_thumbnail img").on({
mouseover: function(){
$(this).css({'cursor': 'pointer'});
},
mouseout: function(){
$(this).css({'cursor': 'default'});
},
click: function(){
var imageURL = $(this).attr('src');
var imageID = $(this).attr('id');
$("#product_main_image > td > img").attr('src', imageURL);
$("#product_main_image > td > img").attr('id', imageID);
}
});
$("#image_left").on({
mouseover: function(){
$(this).css({'cursor': 'pointer'});
},
mouseout: function(){
$(this).css({'cursor': 'default'});
},
click: function(){
var curImageID = $("#product_main_image img").attr('id');
curImageID--;
var imageURL = $("#"+curImageID).attr('src');
alert (imageURL);
$("#product_main_image > td > img").attr('src', imageURL);
$("#product_main_image > td > img").attr('id', curImageID);
}
});
$("#image_right").on({
mouseover: function(){
$(this).css({'cursor': 'pointer'});
},
mouseout: function(){
$(this).css({'cursor': 'default'});
},
click: function(){
var curImageID = $("#product_main_image img").attr('id');
curImageID++;
var imageURL = $("#"+curImageID).attr('src');
alert (imageURL);
$("#product_main_image > td > img").attr('src', imageURL);
$("#product_main_image > td > img").attr('id', curImageID);
}
});
我的 HTML 是如何从 php 生成的
$sql = mysqli_query($con, "SELECT * FROM product_images WHERE product='$product_id'");
$imageCount = mysqli_num_rows($sql);
if ($imageCount > 0) {
$i = 0;
while($row = mysqli_fetch_array($sql)){
$image = $row["image"];
$i++;
$gallery .= "<td><img src='product_images/$image' data-id='$i'></td>";
}
}
$sql = mysqli_query($con, "SELECT * FROM product_images WHERE product='$product_id' LIMIT 1");
$imageCount = mysqli_num_rows($sql);
if ($imageCount > 0) {
while($row = mysqli_fetch_array($sql)){
$first_image = $row['image'];
$main_image .= "<img src='product_images/$first_image' data-id='1'>";
}
}
我的实际 HTML
<table id="gallery">
<tr id="product_main_image">
<td colspan='5'>
<?php echo $main_image; ?>
<span id="image_left"><img src="web/left_arrow.png"></span>
<span id="image_right"><img src="web/right_arrow.png"></span>
</td>
</tr>
<tr id="product_thumbnail">
<?php echo $gallery; ?>
</tr>
</table>
最佳答案
您使用的 id
不是唯一的。他们应该是。
而是使用 data-id
。
解决方法:
$("#product_thumbnail img").on({
click: function() {
var imageURL = $(this).attr('src');
var imageID = $(this).attr('data-id');
$("#product_main_image > td > img").attr('src', imageURL);
$("#product_main_image > td > img").attr('data-id', imageID);
}
});
$("#image_left").on({
click: function() {
var curImageID = $("#product_main_image img").attr('data-id');
curImageID--;
if( curImageID > 0) {
var imageURL = $("#product_thumbnail img[data-id=" + curImageID + "]").attr('src');
$("#product_main_image > td > img").attr('src', imageURL);
$("#product_main_image > td > img").attr('data-id', curImageID);
}
}
});
$("#image_right").on({
click: function() {
var curImageID = $("#product_main_image img").attr('data-id');
curImageID++;
if( curImageID <= $('#product_thumbnail img').length) {
var imageURL = $("#product_thumbnail img[data-id=" + curImageID + "]").attr('src');
$("#product_main_image > td > img").attr('src', imageURL);
$("#product_main_image > td > img").attr('data-id', curImageID);
}
}
});
#product_thumbnail img:hover,
#image_left,
#image_right{
cursor: pointer;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
<tr id="product_main_image">
<td colspan="5">
<img src="http://via.placeholder.com/100x100" data-id="1"><br />
<span id="image_left" style="bottom: 233px;">
<!--img src="web/left_arrow.png"-->
left
</span>
<span id="image_right" style="bottom: 233px;">
<!--img src="web/right_arrow.png"-->
right
</span>
</td>
</tr>
<tr id="product_thumbnail">
<td><img src="http://via.placeholder.com/100x100" data-id="1"></td>
<td><img src="http://via.placeholder.com/110x100" data-id="2"></td>
<td><img src="http://via.placeholder.com/120x100" data-id="3"></td>
<td><img src="http://via.placeholder.com/130x100" data-id="4"></td>
<td><img src="http://via.placeholder.com/140x100" data-id="5"></td>
</tr>
</table>
关于javascript - 图库功能似乎被调用了两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49033585/
这是一个链接:http://lomakincello.net/etu/sehen.php 我正在使用 HTML 和 CSS 创建一个网站。我不熟悉 JavaScript,所以有人帮助我制作了一个运行
大家好。我的目标是为自己的新爱好摄影创建一个个人作品集网站。 目前一切就绪。 (这个可以看here。) 问题是,尽我所能,我无法在 CSS 中替换图像。我花了很长时间试图移动图像等,但它只是悲惨地失败
我对画廊有疑问。我无法通过触摸滚动。通过 DPAD 或轨迹球滚动效果很好。 这是一些代码:xml布局: 适配器: package de.goddchen.android.advent.tem
是否有一个社区站点包含一组自定义控件或他们如何调用它为 View ,人们可以在其中获取和重用或发布比标准 UI 组件集更高级的东西? 最佳答案 OpenIntents.org has a bunch
我看了很多论坛,也试过很多东西,就是无法添加PS图库我在公司代理后面,但我已经设置了我的个人资料来使用它。我正在尝试使用这些命令注册 PS 存储库 [Net.ServicePointManager]:
我目前正在尝试在现有的 C++ 项目中使用 boost 图形库。我想将自定义类的对象存储在 boost 图中。下面是一个小示例,其中包含具有两个成员(一个字符串和一个整数)的自定义类定义及其相应的 g
需要从路径获取图像。我已经尝试了所有方法,但似乎没有得到图像。 我的两个图片路径: /storage/emulated/0/DCIM/Camera/20161025_081413.jpg conten
我正在使用 Turbolinks 开发 Android 和 iOS 网络应用程序。 我正在尝试使用 native View /进程实现拍摄新照片或从图库中选择一张照片。 我的表单中有这一行 当我通过
我正在尝试实现诸如适用于 Android 的 Airbnb 应用程序的效果,列出每行中水平滚动画廊的位置(并且每行都有带标题的顶层)。我在每个单元格中使用带有 FrameLayout 和 ViewPa
好吧,我是编码初学者。我下载了 Galereya Jquery 脚本。它有效,但它与代码中它下面的所有其他内容重叠。我尝试更改溢出和位置,但似乎没有任何效果。当我将它添加到另一个 div 中时,网格停
这是我在 stackoverflow 上的第一篇文章。因此,对于这篇文章中的一些不典型内容,我深表歉意。 我编写了一个带有画廊 slider 的 Django 网站,但我不知道为什么图像太大。看这里:
我正在处理一个网站的图库,它由显示所有图片的缩略图 block 组成以及用于显示特定图像的部分。 这是我用来以实际大小显示缩略图和图像的代码。 问题是:我想不出任何东西来设置打开图像的大小。设
我使用 jquery 制作了一个简单的画廊,但是左右按钮不起作用?? 我使用了 jquery 函数 first().appendTo 和 last().prependTo 请检查下面的链接 Mydem
好的伙计们,请不要杀了我,这是我的第一个问题,我对编程知之甚少:)所以我想用灯箱画廊创建一个简单的网站,你可以看看它here . 所以我无法解决的问题是,当您向下滚动页面时,照片后面没有黑色背景。 我
我正在编写自己的图形库 Graph++ ,我对接口(interface)应该返回什么有疑问。例如,我的 BFS 应该返回什么,我很困惑它是否应该返回按顺序访问的一组 vertices ,或者我应该有
我一直在使用图库控件来显示照片,但在滑动照片时遇到问题。我需要一直滑动才能更改照片,否则它会弹回到上一张照片。 在互联网上查询后,我听说画廊已被弃用。下一个可以与画廊控件执行相同操作的控件是什么? 最
为了上大学,我必须在 android 上开发一个带有面部检测的应用程序。为此,我必须在我的画廊中保存各种照片。问题是保存照片后,图库不会更新。更准确地说,如果我删除了我要保存图像的目录,我打开应用程序
我正在这样使用图库 但是当我运行代码时,我发现画廊从中间开始,我想从左边开始。我该怎么办,请帮助我。 最佳答案 描述有关显示的一般信息的结构,例如其大小、密度和字体缩放。要访问 DisplayMe
我试图让用户从他的设备中选择图像或视频,目前它只显示视频或图像,具体取决于以下代码中首先写入的内容: Intent galleryIntent = new Intent(Intent.ACTION_
我正在创建一个 cover flow通过扩展 Gallery 类来处理图像。 画廊 View 显示正常,但图像从右向左滚动的速度非常快,反之亦然。 有什么方法可以调节图像在水平方向上从右到左移动的速度
我是一名优秀的程序员,十分优秀!