gpt4 book ai didi

javascript - 如何阻止图像随其所在的 div 一起消失?

转载 作者:行者123 更新时间:2023-11-28 12:01:03 24 4
gpt4 key购买 nike

我做了这个site/webapp并且您可以将洋葱拖出它所在的空白区域并拖到页面上的任何位置,但是,当您单击左侧的按钮时,当它所在的 div 的其余部分所在时,它就会消失。我怎样才能让它不当用户将其拖出白框时消失?

我使用 jQuery 让它滑出和滑入:

    $( "#button" ).click(function() {
$( "#toggle" ).toggle( "slide" );
});

和这个 html 让它工作:

   <button id="button">&lt;-&gt;</button>
<aside class="ingredients" id="toggle">
<section class="center">
<section class="onion" id="draggable"></section>
<section class="butter"></section>
</section>
</aside>

这些部分使用背景图像来显示它们:

.onion {
background-image: url(onion.png);
margin: 20px auto -300px auto;
}

.choppedonion {
background-image: url(choppedonion.png);
}

最佳答案

试试这个用于拖动的内置 JQuery 选项。

<html lang="en">
<head>
<meta charset="utf-8" />
<title>Draggable </title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery- ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

<style>
#draggable { width: 150px; height: 150px; padding: 0.5em; }
</style>
<script>
$(function() {
$( "#draggable" ).draggable();
});
</script>
</head>
<body>
<div id="draggable" class="ui-widget-content">
<p>Drag me around</p>
</div>
</body>
</html>

查找相关文档here

关于javascript - 如何阻止图像随其所在的 div 一起消失?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19882018/

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