1. 程式人生 > >jQuery UI練習

jQuery UI練習

部件 jquery 插件 adding () 用戶界面 resources javascrip lan func

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

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

<!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>

jQuery UI練習