mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
53 lines
1.4 KiB
HTML
53 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>jQuery UI Draggable - Z-Index / Stack Demo</title>
|
|
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
|
|
<script type="text/javascript" src="../../jquery-1.3pre.js"></script>
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
<script type="text/javascript" src="../../ui/ui.draggable.js"></script>
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
|
<style type="text/css">
|
|
#draggable, #set, #set div { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 5px; }
|
|
#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>
|
|
<div class="demo">
|
|
|
|
<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>
|
|
|
|
<div class="ui-widget-content">
|
|
<p>..whose z-indexes are controlled automatically..</p>
|
|
</div>
|
|
|
|
<div class="ui-widget-content">
|
|
<p>..with the stack option.</p>
|
|
</div>
|
|
</div>
|
|
|
|
</div><!-- End demo -->
|
|
|
|
<div class="demo-description">
|
|
|
|
<p>
|
|
<!-- Add description here -->
|
|
</p>
|
|
|
|
</div><!-- End demo-description -->
|
|
</body>
|
|
</html>
|