gpt4 book ai didi

JQuery Draggable - 约束到父级,但允许在父级下滑动?

转载 作者:行者123 更新时间:2023-12-01 00:58:37 25 4
gpt4 key购买 nike

我正在使用JQuery Draggable plugin 。我正在尝试创建一个图像编辑控件,用户可以在其中移动(并最终调整大小)可拖动图像。如果你看demo here ,您会看到可以拖动灰色框,如果它超出框架的边界,您会看到滚动条出现,您可以继续拖动。我想在没有滚动条的情况下实现相同的功能。您应该能够拖动图像,如果图像超出框架的边界,它应该看起来在框架下方滑动。框架不应变大,也不应出现滚动条。我认为这应该是可能的,但我还没有找到一种方法来使用我找到的文档来做到这一点。这是我的代码:

<head>
<meta charset="UTF-8" />
<title></title>
<style type="text/css">
#draggable { width: 400px; height: 300px; cursor:pointer;}
#container{overflow:hidden; height: 500px; width: 500px; border: solid 1px black;}
#slider{margin: 10px; border: solid 1px black; height: 300px; vertical-align:middle;}
</style>

<%--came from http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.1.js--%>
<script src="scripts/jquery.js" type="text/javascript"></script>

<%--came from //ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.js--%>
<script src="scripts/jquery-ui.js" type="text/javascript"></script>

<script type="text/javascript">
$(document).ready(function() {
$("#draggable").draggable({ opacity: 0.35 }); //, helper: 'original', containment: 'parent'
});
</script>
</head>

<body>
<div id="container">
<img id="draggable" src="images/96.jpg" width="400px" height="300px" alt="Click this image to drag it around" />
</div>
</body>

问题:我怎样才能使可拖动<img>似乎在父级 <div> 下滑动拖动时 - 但没有出现滚动条?

更新:我越想这个问题,就越觉得我应该重新表述我的问题。我真正想做的是让我的 parent <div>标签就像我的可拖动周围的蒙版/剪切路径<img> 。里面的图像实际上可能比<div>更大。但仅限 <div> 中的内容将可见。您应该能够拖动 <img>周围<div>如你所愿。

最佳答案

@bOkeifus is right. Check out this working jsFiddle demo:

JS:

$(document).ready(function() {
$("#draggable").draggable({ opacity: 0.35 });
});

HTML:

<div id="container">
<img id="draggable"
alt="Click this image to drag it around"
src="http://gallery.photo.net/photo/12355172-md.jpg"
width="400px"
height="300px" />
</div>

CSS:

#container { 
overflow: hidden;
height: 500px;
width: 500px;
border: solid 1px black;
}

关于JQuery Draggable - 约束到父级,但允许在父级下滑动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6154747/

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