我正在开发一个迷你画廊,需要像facebook那样编辑缩略图。 Jquery可以吗? 拖动一个具有特定容器的区域并获得顶部和左侧坐标,我只想获得坐标。
请给我一些想法,谢谢
答案 0 :(得分:1)
您是否尝试过Jcrop?
答案 1 :(得分:0)
使用jQuery Draggable UI:http://jsfiddle.net/antonysastre/j9UUm/10/
基本上在动态计算的可拖动元素上使用包含,并以溢出隐藏。
简而言之:
HTML
<div class="body">
<div class="thumbnail">
<div class="containment">
<div class="image"><img src="http://lorempixel.com/200/260/fashion" /></div>
</div>
</div>
</div>
Javascript
$(document).ready(function() {
$('.thumbnail .containment img').each(function() {
var height = $(this).height();
var overflow = (height - 160); // Using explict value here for now.
var containerHeight = (overflow * 2) + 160; // And also here.
var containerTop = Math.abs(overflow) * -1;
$(this).parents('.containment').css({'top': containerTop});
$(this).parents('.containment').css({'height': containerHeight});
})
$('.image').draggable({
containment: 'parent',
axis: 'y'
});
});
CSS
.containment { position: relative; }
.thumbnail {
width: 160px;
height: 160px;
position: relative;
overflow: hidden;
}
.thumbnail .image { position: relative; }
.thumbnail img { max-width: 160px; }