中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

各種效果的jquery ui(接口)介紹

基本的鼠標(biāo)互動:
拖拽(drag and dropping)、排序(sorting)、選擇(selecting)、縮放(resizing)

各種互動效果:
手風(fēng)琴式的折疊菜單(accordions)、日歷(date pickers)、對話框(dialogs)、滑動條(sliders)、表格排序(table sorters)、頁簽(tabs)、放大鏡效果(magnifier)、陰影效果(shadow)

第一部分:鼠標(biāo)交互
1.1 Draggables:拖拽
所需文件:
ui.mouse.js
ui.draggable.js
ui.draggable.ext.js

用法:文件載入后,可以拖拽class = "block"的層
$(document).ready(function(){
    $(".block").draggable();
});

draggable(options)可以跟很多選項(xiàng)
選項(xiàng)說明:http://docs.jquery.com/UI/Draggables/draggable#options
選項(xiàng)實(shí)例:http://dev.jquery.com/view/trunk/plugins/ui/tests/draggable.html

1.2 Droppables
所需要文件,drag drop
ui.mouse.js
ui.draggable.js
ui.draggable.ext.js
ui.droppable.js
ui.droppable.ext.js
用法:
$(document).ready(function(){
    $(".block").draggable({helper: 'clone'});
$(".drop").droppable({
   accept: ".block",
   activeClass: 'droppable-active',
   hoverClass: 'droppable-hover',
   drop: function(ev, ui) {
       $(this).append("<br>Dropped!");
   }
});
});
選項(xiàng)說明:http://docs.jquery.com/UI/Droppables/droppable#options
選項(xiàng)實(shí)例:http://dev.jquery.com/view/trunk/plugins/ui/tests/droppable.html

1.3 Sortables 排序
所需要的文件
jquery.dimensions.js
ui.mouse.js
ui.draggable.js
ui.droppable.js
ui.sortable.js
用法:
$(document).ready(function(){
    $("#myList").sortable({});
});
dimensions文檔http://jquery.com/plugins/project/dimensions
選項(xiàng)說明:http://docs.jquery.com/UI/Sortables/sortable#options
選項(xiàng)實(shí)例:http://dev.jquery.com/view/trunk/plugins/ui/demos/ui.sortable.html

1.4 Selectables 選擇
所需要的文件
jquery.dimensions.js
ui.mouse.js
ui.draggable.js
ui.droppable.js
ui.selectable.js
用法:
$(document).ready(function(){
    $("#myList").selectable();
});
選項(xiàng)說明:http://docs.jquery.com/UI/Selectables/selectable#options
選項(xiàng)實(shí)例:http://dev.jquery.com/view/trunk/plugins/ui/tests/selectable.html

1.5 Resizables改變大小
所需要的文件 ,此例子需要幾個(gè)css文件
jquery.dimensions.js
ui.mouse.js
ui.resizable.js
用法:
$(document).ready(function(){
    $("#example").resizable();
});
CSS文件:http://dev.jquery.com/view/trunk/themes/flora/flora.all.css
選項(xiàng)說明:http://docs.jquery.com/UI/Resizables/resizable#options
選項(xiàng)實(shí)例:http://dev.jquery.com/view/trunk ... s/ui.resizable.html

第二部分:互動效果
2.1 Accordion 折疊菜單
所需要的文件:
ui.accordion.js
jquery.dimensions.js
用法:
$(document).ready(function(){
    $("#example").accordion();
});
CSS文件:http://dev.jquery.com/view/trunk/themes/flora/flora.all.css
選項(xiàng)說明:http://docs.jquery.com/UI/Accordion/accordion#options
選項(xiàng)實(shí)例:http://dev.jquery.com/view/trunk/plugins/accordion/?p=1.1.1
2.2 dialogs 對話框
所需要的文件:
jquery.dimensions.js
ui.dialog.js
ui.resizable.js
ui.mouse.js
ui.draggable.js

用法:
$(document).ready(function(){
    $("#example").dialog();
});
CSS文件:http://dev.jquery.com/view/trunk/themes/flora/flora.all.css
選項(xiàng)說明:http://docs.jquery.com/UI/Dialog/dialog#options
選項(xiàng)實(shí)例:http://dev.jquery.com/view/trunk/plugins/ui/tests/dialog.html

2.3 sliders 滑動條
所需要的文件
jquery.dimensions.js
ui.mouse.js
ui.slider.js

用法:
$(document).ready(function(){
    $("#example").slider();
});

CSS文件:http://dev.jquery.com/view/trunk/themes/flora/flora.all.css
選項(xiàng)說明:http://docs.jquery.com/UI/Slider/slider#options
選項(xiàng)實(shí)例:http://dev.jquery.com/view/trunk/plugins/ui/demos/ui.slider.html

2.4 Tablesorter表格排序
所需要的文件
ui.tablesorter.js

用法:
$(document).ready(function(){
    $("#example").tablesorter({sortList:[[0,0],[2,1]], widgets: ['zebra']});
});

CSS文件:http://dev.jquery.com/view/trunk/themes/flora/flora.all.css
選項(xiàng)說明:http://docs.jquery.com/Plugins/Tablesorter/tablesorter#options
選項(xiàng)實(shí)例:http://tablesorter.com/docs/#Demo

2.5 tabs頁簽(對IE支持不是很好)
所需要的文件
ui.tabs.js
用法:
$(document).ready(function(){
    $("#example > ul").tabs();
});
CSS文件:http://dev.jquery.com/view/trunk/themes/flora/flora.all.css
選項(xiàng)說明:http://docs.jquery.com/UI/Tabs/tabs#initialoptions
選項(xiàng)實(shí)例:http://dev.jquery.com/view/trunk/plugins/ui/tests/tabs.html
tabs ext http://stilbuero.de/jquery/tabs_3/rotate.html

第三部分:效果
3.1 Shadow 陰影
實(shí)例http://dev.jquery.com/view/trunk/plugins/ui/demos/ui.shadow.html
3.2 Magnifier 放大
實(shí)例http://dev.jquery.com/view/trunk/plugins/ui/demos/ui.magnifier.html

JavaScript技術(shù)各種效果的jquery ui(接口)介紹,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 91亚洲国产精品 | 一级黄在线观看 | 国产一区二区三区视频 | 久久最新精品 | 精品久久久久久亚洲精品 | 日本一区二区高清不卡 | 秋霞a级毛片在线看 | 亚洲欧美在线观看 | 久久久精品国产 | 亚洲欧洲成人在线 | 国产一级在线观看 | 综合国产| 中国一级特黄真人毛片 | 日韩精品成人在线 | 一区二区三区av | 国产精品久久久久久二区 | 国产91精品久久久久久久网曝门 | 久久99精品久久久久久狂牛 | 欧美精品在线一区 | 国产一区二区三区精品久久久 | 免费成人高清在线视频 | 国产成人精品一区二区在线 | 免费av手机在线观看 | 天堂色网 | 狠狠爱综合网 | 成人亚洲一区 | 亚洲精品一区二区三区蜜桃久 | 国产精品视频一区二区三区四区国 | 国产a级毛片 | 91精品国产一区二区三区动漫 | 999热精品 | 亚洲成人中文字幕 | 日韩在线免费观看视频 | 成人中文字幕在线观看 | xx性欧美肥妇精品久久久久久 | 欧美精品二区三区 | 欧美视频精品 | 亚欧午夜 | 亚洲午夜在线 | 日日操夜夜操天天操 | 欧美午夜一区 |