使用 JQuery 查找和复制图像
Posted
技术标签:
【中文标题】使用 JQuery 查找和复制图像【英文标题】:Find and Duplicate image with JQuery 【发布时间】:2011-01-22 13:22:09 【问题描述】:我正在尝试使用 JQuery 使用文章中存在的图像创建动态页眉。我打算给图像一个类(.thumbnail)。一旦用于标题,我想从文章中删除图像。逻辑如下:
使用 .thumbnail 类查找 IMG 标签 将该图像移至新的 DIV (#dynHeader),将其归类为 .Image1 将图像高度缩放为 x 像素,宽度保持纵横比 查找新缩放图像的宽度(var保持宽度) 计算#dynHeader的剩余宽度 将IMG复制到.Image1右侧,命名为.Image2 将其宽度设置为保持宽度的值 将其裁剪到 .Image1 的高度 以特定值将其定位在 Y 轴上我需要知道如何查找和复制 IMG .thumbnail。我确信随着我继续解决这个问题,会出现更多问题,但我完全被困住了。我想错了吗?有没有办法在页面上放置两次相同的图像?
感谢您的帮助。
-亚历克斯
编辑:我正在发布解决方案,因为我正在我的网站上为可能遇到此问题的任何其他人使用它。从答案中提取代码并对其进行调整以使其正常运行。
//need to clone before removing class so that the original is deletable later.
var cache = $('img.thumbnail').clone().removeClass('thumbnail').addClass('Image1').css('float','left');
//remove the original from the text
$('img.thumbnail').remove();
//attach the cloned image to the header
$('#dynHeader').append(cache);
//find the ratio
var ratio = (cache.width() / cache.height());
//set variable to hold image height
var imageHeight = (365);
//set variable to hold image width
var imageWidth = (imageHeight*ratio);
//set the image height & width
cache.height(imageHeight).width(imageWidth);
//figure the amount of width remaining in the header
var remainWidth = $('#dynHeader').width() - imageWidth;
//clone the header image
var dupe = cache.clone();
//work with the cloned image - change the class to Image2, set the width and height dupe.removeClass('Image1').addClass('Image2').css("width",remainWidth+"px").css("height","auto");
//place Image2 to the right of Image1
cache.after(dupe);
然后我使用一些 CSS 来定位 Image2 并隐藏溢出(我正在拍摄的缩放和裁剪效果)。
#dynHeader
height: 365px;
overflow: hidden;
margin-bottom: 30px;
img.Image2
position: relative;
top: -150px;
希望这对其他人有帮助!感谢 Alex 指出正确的方法。
【问题讨论】:
【参考方案1】:这应该可以帮助您入门:(请记住,它 100% 在我脑海中浮现,而且它来晚了……可能是一些错别字!)
//Find IMG tag with .thumbnail class:
$('img.thumbnail')
//Move that image to a new DIV (#dynHeader), class it .Image1
// change class before and then grab image
var cache = $('img.thumbnail').removeClass('thumbnail').addClass('Image1').clone();
// remove from context
$('img.thumbnail').remove();
// add it to the div
$('#dynHeader').append(cache);
// Scale the image to x pixels in height, maintain aspect for width
// cache selector
var cache = $('.Image1');
// calculate aspect
var ratio = (cache.width() / cache.height());
// calculate & store width
var remainWidth = (x*ratio);
// scale to x pixels in height
cache.height(x).width(remainWidth);
// Calculate the remaining width of #dynHeader
var remainHeaderWidth = $('#dynHeader').width() - remainWidth;
// Duplicate the IMG to the right of .Image1, call it .Image2
// assuming you mean "duplicate it and add to the right"
var dupe = cache.clone();
dupe.removeClass('Image1).addClass('Image2');
// Set its width to the value of remainWidth
dupe.width(remainHeaderWidth);
// Crop it to the height of .Image1
// not sure about the cropping, here's how you would change it without maintaing aspect
dupe.height(cache.height());
// add it after the first image
cache.after(dupe);
// Position it on the Y axis with a specific value
// cant remember off the top of my head but as far as I know you have to first find its
// position on the axis and then shift it maybe applying relative css positioning
它绝对可以改进,但应该给你一个大致的想法:)
哦,只要在页面上放置相同的图像,没问题,只需 clone() 元素并将其添加到您想要的任意位置!
【讨论】:
亚历克斯,非常感谢。这是一个很好的开始。 .clone() 函数正是我所需要的。正如您所说,可能存在一些小问题,但这正是我所需要的。现在重新编写代码,我会在它工作时发布(或者当我遇到另一个问题时!)以上是关于使用 JQuery 查找和复制图像的主要内容,如果未能解决你的问题,请参考以下文章
我如何使用 jquery 通过与类不同的属性来查找项目? [复制]