jQuery UI練習

jQuery UI 是創建在 jQuery JavaScript 庫上的一組用戶界面交互、特效、小部件及主題。不管您是建立高度交互的 Web 應用程序仍是僅僅向窗體控件添加一個日期選擇器,jQuery UI 都是一個完美的選擇。css

jQuery UI 包含了許多維持狀態的小部件(Widget),所以,它與典型的 jQuery 插件使用模式略有不一樣。全部的 jQuery UI 小部件(Widget)使用相同的模式,因此,只要您學會使用其中一個,您就知道如何使用其餘的小部件(Widget)。html

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery UI 拖動(Draggable) - 自動滾動</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.9.1.js"></script>
  <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  <link rel="stylesheet" href="http://jqueryui.com/resources/demos/style.css">
  <style>
  #draggable, #draggable2, #draggable3 { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 0 10px 10px 0; }
  </style>
  <script>
  $(function() {
    $( "#draggable" ).draggable({ scroll: true });
    $( "#draggable2" ).draggable({ scroll: true, scrollSensitivity: 100 });
    $( "#draggable3" ).draggable({ scroll: true, scrollSpeed: 100 });
  });
      $(document).ready(function () {
        $("#a_btn").button()
    })
  </script>
</head>
<body>

<div id="draggable" class="ui-widget-content">
  <p>Scroll 設置爲 true,默認設置</p>
</div>

<div id="draggable2" class="ui-widget-content">
  <p>scrollSensitivity 設置爲 100</p>
</div>

<div id="draggable3" class="ui-widget-content">
  <p>scrollSpeed 設置爲 100</p>
</div>

<div style="height: 5000px; width: 1px;"></div>
<a href="https://www.baidu.com/" id="a_btn">baidu</a>

</body>
</html>

 

相關文章
相關標籤/搜索