js实现拖动

来源:互联网 发布:微信恶搞软件有哪些 编辑:程序博客网 时间:2024/05/16 09:20
<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>jQuery UI 拖动(Draggable</title>
  <link rel="stylesheet" href="//apps.bdimg.com/libs/jqueryui/1.10.4/css/jquery-ui.min.css">
  <script src="//apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
  <script src="//apps.bdimg.com/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
  <link rel="stylesheet" href="jqueryui/style.css">
  <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>请拖动我!</p>
</div>
 
 
</body>

</html>

菜鸟教程上拖动缩放功能的实现方法,详情见:http://www.runoob.com/jqueryui/example-draggable.htmlhttp://www.runoob.com/jqueryui/example-draggable.html

0 0
原创粉丝点击