admin管理员组文章数量:1345069
Making an image draggable does some pretty wacky things when the image is larger than the container... Does anyone know a way around this?
Here's my code...
<script type='text/javascript' src="scripts/jquery-1.4.2.js"></script>
<script type="text/javascript" src="scripts/jquery-ui.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("img").draggable({ containment: "div", scroll: false });
});
</script>
<style type="text/css">
div {
width:500px;
height:423px;
position:relative;
overflow:hidden;
}
</style>
and...
<div>
<img src="images/map.jpg" width="1000" height="845" alt="Map" />
</div>
Making an image draggable does some pretty wacky things when the image is larger than the container... Does anyone know a way around this?
Here's my code...
<script type='text/javascript' src="scripts/jquery-1.4.2.js"></script>
<script type="text/javascript" src="scripts/jquery-ui.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("img").draggable({ containment: "div", scroll: false });
});
</script>
<style type="text/css">
div {
width:500px;
height:423px;
position:relative;
overflow:hidden;
}
</style>
and...
<div>
<img src="images/map.jpg" width="1000" height="845" alt="Map" />
</div>
Share
Improve this question
edited Oct 25, 2010 at 15:34
Tom
asked Oct 25, 2010 at 15:17
TomTom
13k50 gold badges153 silver badges247 bronze badges
3 Answers
Reset to default 5It is working if you set the the bounds manually:
$("img").draggable({ containment: [0, 0, 500, 423], scroll: false });
I chose to set the containment dynamically based off the parent and child size by doing the following, JSFiddle Here:
$(function () {
$("div[id='dragx']").draggable({
drag : function(event,ui){
var parent = ui.helper[0].parentNode;
var dragWidth = ui.helper[0].clientWidth;
var parentWidth = parent.clientWidth;
var dragHeight = ui.helper[0].clientHeight;
var parentHeight = parent.clientHeight;
var widthDifference = dragWidth - parentWidth;
var heightDifference = dragHeight - parentHeight;
if(ui.position.left > 0) ui.position.left = 0;
else if(ui.position.left < -widthDifference) ui.position.left = -widthDifference;
if(ui.position.top > 0) ui.position.top = 0;
else if(ui.position.top < -heightDifference) ui.position.top = -heightDifference;
}
});
});
I'm not sure that you're using draggable properly. The point of it is to pick up the image and put it somewhere. If the image is larger than the container, how can you know where you're putting it? It's not the same as if you want to grab the image and make the container scroll as you drag.
Now, that said, I think it's a bug (or maybe a feature?) that makes the outer edges snap to the container edges if the inner element is larger.
Are you trying to scroll the map while the mouse is clicked and dragged?
本文标签: javascriptjqueryDraggable image when image is larger than the containerStack Overflow
版权声明:本文标题:javascript - jquery - Draggable image when image is larger than the container - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743808155a2542560.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论