2008-12-30 15:51:51 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2008-12-31 22:16:02 +00:00
|
|
|
<title>jQuery UI Draggable - Z-Index / Stack Demo</title>
|
2009-01-07 02:36:51 +00:00
|
|
|
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
|
2009-01-08 05:39:38 +00:00
|
|
|
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
|
2008-12-30 15:51:51 +00:00
|
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
|
|
<script type="text/javascript" src="../../ui/ui.draggable.js"></script>
|
2008-12-31 06:29:31 +00:00
|
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
2008-12-30 15:51:51 +00:00
|
|
|
<style type="text/css">
|
2008-12-31 06:29:31 +00:00
|
|
|
#draggable, #set, #set div { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 5px; }
|
2008-12-30 15:51:51 +00:00
|
|
|
#set { width: 368px; height: 120px; }
|
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
$("#draggable").draggable({ zIndex: 1000 });
|
|
|
|
$("#set div").draggable({ stack: { group: '#set div', min: 1 } });
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2008-12-31 14:02:14 +00:00
|
|
|
<div class="demo">
|
|
|
|
|
2008-12-30 15:51:51 +00:00
|
|
|
<div id="draggable" class="ui-widget-content">
|
|
|
|
<p>I always have a higher z-index than my siblings during drag</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="set" class="ui-widget-content">
|
|
|
|
<div class="ui-widget-content">
|
|
|
|
<p>We are draggables..</p>
|
|
|
|
</div>
|
2008-12-31 01:20:50 +00:00
|
|
|
|
2008-12-30 15:51:51 +00:00
|
|
|
<div class="ui-widget-content">
|
|
|
|
<p>..whose z-indexes are controlled automatically..</p>
|
|
|
|
</div>
|
2008-12-31 01:20:50 +00:00
|
|
|
|
2008-12-30 15:51:51 +00:00
|
|
|
<div class="ui-widget-content">
|
|
|
|
<p>..with the stack option.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2008-12-31 14:02:14 +00:00
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
<div class="demo-description">
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<!-- Add description here -->
|
|
|
|
</p>
|
|
|
|
|
|
|
|
</div><!-- End demo-description -->
|
2008-12-30 15:51:51 +00:00
|
|
|
</body>
|
|
|
|
</html>
|