- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
经过大量搜索,我来到了这里。
我正在尝试将 div 用作工具箱(也是 div)中的工具箱项。我正在尝试使用拖放到表单(另一个 div)上。该元素成功出现在表单上,但是随后的掉落导致该元素在页面中越来越低。看起来好像 div 仍然 float 到前一个元素的底部。我试图让元素出现在鼠标指针所在的位置,然后再放到表单上。
我的代码:
var mouseX, mouseY;
$(document).ready(function() {
//$.getJSON('index.php?option=com_report&layout=datajson&format=json', function(result) {
// $.each(result.titles, function(i, item) {
// $('#mogrify_report').append('<br/>' + item);
// });
//});
$('.mogrify_report_tool').draggable({
revert: 'invalid',
helper: 'clone',
});
$('#mogrify_report').droppable({
accept: '.mogrify_report_tool',
drop: function(event, ui) {
var droppable = $(this);
var draggable = ui.draggable;
if(!draggable.hasClass('.mogrify_report_component')) {
var cloned = draggable.clone();
cloned.draggable();
cloned.detach().prependTo(droppable);
cloned.addClass('.mogrify_report_component');
cloned.css('top', mouseY - droppable.offset().top);
cloned.css('left', mouseX - droppable.offset().left);
}
}
});
$(document).on('mousemove', function(event) {
//$('#mogrify_report').text( 'pageX:' + event.pageX + ', pageY: ' + event.pageY);
mouseX = event.pageX;
mouseY = event.pageY;
});
});
#mogrify_reportbackground {
background: #8888ff;
width: 1200px;
height: 650px;
margin: 0 auto;
overflow: scroll;
}
#mogrify_padding {
margin-top: 10px;
margin-bottom: 10px;
width: 100%;
height: 100%;
display: table;
}
#table_row {
display: table-row;
width: auto;
clear: both;
}
#table_col_toolbox {
float: left;
display: table-column;
width: 150px;
}
#table_col_report {
float: left;
display: table-column;
width: 900px;
}
#table_col_padding {
float: left;
display: table-column;
width: 150px;
}
#mogrify_toolbox {
background: #FFFFFF;
width: 100px;
height: 400px;
margin: 0 auto;
border: 1px solid black;
}
#mogrify_tool_label {
border: 1px solid black;
width: 50px;
height: 50px;
}
.mogrify_report_tool {
position: fixed;
}
.mogrify_report_component {
}
#mogrify_report {
background: #FFFFFF;
border: 1px solid black;
width: 800px;
height: 1200px;
margin: 0 auto;
}
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="mogrify_reportbackground">
<div id="mogrify_padding">
<div id="table_row">
<div id="table_col_toolbox">
<div id="mogrify_toolbox">
<div id="mogrify_tool_label" class="mogrify_report_tool">
Label
</div>
</div>
</div>
<div id="table_col_report">
<div id="mogrify_report">
</div>
</div>
<div id="table_col_padding">
</div>
</div>
</div>
</div>
最佳答案
使mogrify_report_tool
在放置事件中的位置绝对
。并使 mogrify_report
' 在您的 css 中相对定位。
var mouseX, mouseY;
$(document).ready(function() {
//$.getJSON('index.php?option=com_report&layout=datajson&format=json', function(result) {
// $.each(result.titles, function(i, item) {
// $('#mogrify_report').append('<br/>' + item);
// });
//});
$('.mogrify_report_tool').draggable({
revert: 'invalid',
helper: 'clone',
});
$('#mogrify_report').droppable({
accept: '.mogrify_report_tool',
drop: function(event, ui) {
var droppable = $(this);
var draggable = ui.draggable;
if(!draggable.hasClass('.mogrify_report_component')) {
var cloned = draggable.clone();
cloned.draggable();
cloned.detach().prependTo(droppable);
cloned.addClass('.mogrify_report_component');
cloned.css('position','absolute');
cloned.css('top', mouseY - droppable.offset().top);
cloned.css('left', mouseX - droppable.offset().left-25);
}
}
});
$(document).on('mousemove', function(event) {
//$('#mogrify_report').text( 'pageX:' + event.pageX + ', pageY: ' + event.pageY);
mouseX = event.pageX;
mouseY = event.pageY;
});
});
#mogrify_report {
position:relative;
}
#mogrify_reportbackground {
background: #8888ff;
width: 1200px;
height: 650px;
margin: 0 auto;
overflow: scroll;
}
#mogrify_padding {
margin-top: 10px;
margin-bottom: 10px;
width: 100%;
height: 100%;
display: table;
}
#table_row {
display: table-row;
width: auto;
clear: both;
}
#table_col_toolbox {
float: left;
display: table-column;
width: 150px;
}
#table_col_report {
float: left;
display: table-column;
width: 900px;
}
#table_col_padding {
float: left;
display: table-column;
width: 150px;
}
#mogrify_toolbox {
background: #FFFFFF;
width: 100px;
height: 400px;
margin: 0 auto;
border: 1px solid black;
}
#mogrify_tool_label {
border: 1px solid black;
width: 50px;
height: 50px;
}
.mogrify_report_tool {
position: fixed;
z-index:50;
}
.mogrify_report_component {
}
#mogrify_report {
background: #FFFFFF;
border: 1px solid black;
width: 800px;
height: 1200px;
margin: 0 auto;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://code.jquery.com/ui/1.12.0/themes/smoothness/jquery-ui.css">
<div id="mogrify_reportbackground">
<div id="mogrify_padding">
<div id="table_row">
<div id="table_col_toolbox">
<div id="mogrify_toolbox">
<div id="mogrify_tool_label" class="mogrify_report_tool">
Label
</div>
</div>
</div>
<div id="table_col_report">
<div id="mogrify_report">
</div>
</div>
<div id="table_col_padding">
</div>
</div>
</div>
</div>
关于javascript - 使用 jquery 拖放(一个工具箱和一个报告窗口),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52985220/
这个问题在这里已经有了答案: Difference between Property and Field in C# 3.0+ (10 个答案) 关闭 10 年前。 我不明白静态属性之间的区别: p
当元素被拖放时,有没有办法从被拖动的元素中获取 id(或其他属性值)? 例如,在左侧,我有一堆 div,我可以将图像放入其中。右边有一个 div 用来保存图像。当我将图像从右侧拖动到左侧的 div 时
每当我更改其中一个类属性时,我想设置一个修改标志,如下所示 public bool Modified { get; set; } public bool Enabled { get; set { Mo
由于某种原因,我下面的代码曾经可以正常工作,但现在却引发了一个异常: public static async Task HttpPut(string inUrl, string inFilePath)
为什么将 ; 放在最佳实践中?在函数定义的末尾。 例如 var tony = function () { console.log("hello there"); }; 优于: var tony
我在容器内有一个位图。当我拖动容器时,光标变为编辑文本形状,图像也跳到光标的右下角(好像我从左上角拿着图像并拖动它)。 这是我的代码,所以你可以看到我有 RTFM: function createIc
这个问题已经有答案了: C# 3.0 auto-properties — useful or not? [closed] (17 个回答) 已关闭 6 年前。 当我让 Visual Studio 20
以类中的以下代码为例: public class Employee : IEntity { public string FirstName { get; set; } public s
我有 json 数据: { "products": [ { "productId" : 0, "productImg" : "../img/product-ph
这个问题在这里已经有了答案: What is the difference between a field and a property? (33 个答案) 关闭 9 年前。 我在一本书上找到这样声
我正在设置多个方法,想知道如何继续将一个变量(“顶部”变量)传递给不同的方法。 主要方法: public static void Main(string[] args) { i
我正在尝试使用 crontab 编写一个简单的任务,将一些文件从本地复制到 HDFS。我的代码是这样的: #!/bing/ksh ANIO=$(date +"%Y") MES=$(date +"%m"
有人可以告诉我如何使用这个解决方案来解决我的问题吗?我也想限制 id 中包含文本“not”的节点的拖/放。 jsTree drag and drop restrict folders by class
我的情况如下 - 我正在对可能包含链接行的表进行排序: row 1 row 2 row 3 row 4 row 5 我需要的是禁止在.linked-to-p
我想知道是否有人知道是否有一个预先制定的解决方案:我在 ASP.net 网站上有一个列表,我希望用户能够通过拖放对列表进行重新排序。此外,我希望有第二个列表,用户可以将第一个列表中的项目拖到其中。 到
我在理解似乎不一致的方案中的破坏性操作时遇到问题。即为什么下例中bar没有变化 (define foo '(a b)) (define bar foo) (set! foo '(c d)) foo >
我想知道是否有人知道是否有一个预先制定的解决方案:我在 ASP.net 网站上有一个列表,我希望用户能够通过拖放对列表进行重新排序。此外,我希望有第二个列表,用户可以将第一个列表中的项目拖到其中。 到
我在理解似乎不一致的方案中的破坏性操作时遇到问题。即为什么下例中bar没有变化 (define foo '(a b)) (define bar foo) (set! foo '(c d)) foo >
我在我的 Web 应用程序中使用 Ajax ControlToolkit 中的 ModalPopupExtender。我将其 Drag 属性设置为 true,但是当我拖动弹出面板并将其放到新位置时,它
所以,基于this answer ,我有一组可以拖放并卡入到位的 div。唯一的问题是,可拖动的 div 具有不同的高度,我需要它们始终捕捉到目标的底部,而不是顶部。 您可以在this JsFiddl
我是一名优秀的程序员,十分优秀!