jquery支持拖动排序自定义内容的布局插件

所属分类: 网页特效-筛选&排序    2023-09-06 04:14:09

jquery支持拖动排序自定义内容的布局插件 ie兼容6
 查看演示  登录后下载 温馨提示
登录会员即可享受免费下载
 我要建站

jquery支持拖动排序自定义内容的布局插件(共24个文件)

    • examples.html
    • index.html
    • server.js
    • index.html

使用方法

// basic example
const basic = new Tiles({
  container: 'basic',
  animate_factor: 1.1,
  num_horizontal: 6
})
basic.addTile({ title: '欢迎' })
basic.addTile({ title: '到访' })
basic.addTile({ title: '苦力吧' })
const button = $('#add_basic')
button[0].addEventListener("click", function () {
  basic.addTile({ title: '新标题' })
})
// image example
const imagelist = ['img/1.jpg',
    'img/2.jpg',
    'img/3.jpg',
    'img/4.jpg',
    'img/4.jpg',
    'img/4.jpg']

// instantiate a new Tiles instance
const image = new Tiles({
    container: 'image',
    width: 300,
    height: 200,
    num_horizontal: 3,
    nodrag: true,
    animate_factor: 1.05  // customize how much each tile grows on hover
})
// add the pictures
for (let i = 1; i < 7; i++) {
    image.addTile({
        img_src: imagelist[i - 1],
        hover_color: 'black'
    })
}
// shuffle example
const demoPics = ['https://upload.wikimedia.org/wikipedia/commons/2/25/Playing_card_spade_A.svg',
    'https://upload.wikimedia.org/wikipedia/commons/d/d5/Playing_card_heart_2.svg',
    'https://upload.wikimedia.org/wikipedia/commons/6/6b/Playing_card_club_3.svg',
    'https://upload.wikimedia.org/wikipedia/commons/2/20/Playing_card_diamond_4.svg',
    'https://upload.wikimedia.org/wikipedia/commons/9/94/Playing_card_spade_5.svg',
    'https://upload.wikimedia.org/wikipedia/commons/c/cd/Playing_card_heart_6.svg',
    'https://upload.wikimedia.org/wikipedia/commons/4/4b/Playing_card_club_7.svg',
    'https://upload.wikimedia.org/wikipedia/commons/7/78/Playing_card_diamond_8.svg',
    'https://upload.wikimedia.org/wikipedia/commons/e/e0/Playing_card_spade_9.svg',
    'https://upload.wikimedia.org/wikipedia/commons/9/98/Playing_card_heart_10.svg',
    'https://upload.wikimedia.org/wikipedia/commons/b/b7/Playing_card_club_J.svg',
    'https://upload.wikimedia.org/wikipedia/commons/0/0b/Playing_card_diamond_Q.svg',
    'https://upload.wikimedia.org/wikipedia/commons/9/9f/Playing_card_spade_K.svg']

// instantiate a new Tiles instance
const advanced = new Tiles({
    container: 'advanced',
    width: 90,
    height: 140,
    num_horizontal: 7
})
// add each card in a for loop
for (let i = 1; i < 14; i++) {
    advanced.addTile({
        title: i,
        img_src: demoPics[i - 1]
    })
}
// add listeners to buttons for shuffling and sorting
const shuffle = $('#shuffle')
shuffle[0].addEventListener("click", function () {
    advanced.shuffle()
})
const sort = $('#sort')
sort[0].addEventListener("click", function () {
    advanced.sort()
})

站长提示:
1. 苦力吧素材官方QQ群:950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励2K币
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 筛选&排序

jquery表格table数据多条件筛选特效代码

一款支持多条件筛选查询特效,支持选择勾选字段查询,非常实用。
  筛选&排序
 7404  0

jquery基于SortableJS数据列表拖放排序插件

一款鼠标拖拽自动排序插件,支持多层嵌套拖放排序,非常的简单实用。
  筛选&排序
 3514  0

jquery复选框checkbox过滤器插件

一个简单的jquery过滤器插件,用于过滤一组带有复选框和HTML数据属性的DIV元素。
  筛选&排序
 9281  0

jquery鼠标拖拽图文信息自由分组排序列表

一款图文信息拖拽排序插件,使用鼠标拖拽列表项,并将该列表项放入到其他组的分类列表中,此功能可以快速的进行分类分组。
  筛选&排序
 1101  0

评论数(1) 回复有机会获得K币 用户协议

    苦力吧0
    2023-09-26 18:43:30
    非常棒刚好能用得上,完美NICE!
    回复 1
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论