971753b9a015b29c6891e5cd77e441787026c6a4.svn-base 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <!--框架必需start-->
  5. <script type="text/javascript" src="../../libs/js/jquery.js"></script>
  6. <script type="text/javascript" src="../../libs/js/language/cn.js"></script>
  7. <script type="text/javascript" src="../../libs/js/framework.js"></script>
  8. <link href="../../libs/css/import_basic.css" rel="stylesheet" type="text/css"/>
  9. <link rel="stylesheet" type="text/css" id="skin" prePath="../../"/>
  10. <link rel="stylesheet" type="text/css" id="customSkin"/>
  11. <!--框架必需end-->
  12. <!--拖拽组件start-->
  13. <script type="text/javascript" src="../../libs/js/drag/dragDrop.js"></script>
  14. <!--拖拽组件end-->
  15. <script type="text/javascript">
  16. var maxIndex=1;
  17. function initComplete(){
  18. $('#myBox1').dragDrop({ proxy: false });
  19. var header=$('#myBox2').find(".box_topcenter");
  20. $('#myBox2').dragDrop({ proxy: false ,handler:header });
  21. $('#myBox3').dragDrop();
  22. $('#myBox4').dragDrop({ proxy: 'clone' });
  23. $(".box2_custom").bind("mousedown",function(){
  24. $(this).css("zIndex",maxIndex);
  25. maxIndex++;
  26. })
  27. }
  28. </script>
  29. <body>
  30. <div class="box2_custom" boxType="box2" panelWidth="300" panelHeight="200" panelTitle="按住整体拖拽" id="myBox1" style="top: 0px;position: absolute;-moz-user-select:none;"></div>
  31. <div class="box2_custom" boxType="box2" panelWidth="300" panelHeight="200" panelTitle="按住头部拖拽" id="myBox2" style="left:350px;top: 0px;position: absolute;-moz-user-select:none;"></div>
  32. <div class="box2_custom" boxType="box2" panelWidth="300" panelHeight="200" panelTitle="使用拖拽代理" id="myBox3" style="top: 250px;position: absolute;-moz-user-select:none;"></div>
  33. <div class="box2_custom" boxType="box2" panelWidth="300" panelHeight="200" panelTitle="使用克隆代理" id="myBox4" style="left:350px;top: 250px;position: absolute;-moz-user-select:none;"></div>
  34. </body>
  35. </html>