摘要: 1 给要进行拖拽的div加上draggable="true" ondrop="drop(event,this)" ondragstart="drag(event, this)" ondragover="allowDrop(event)"三个属性 <!-- 图表容器 --> <div id="echa 阅读全文
posted @ 2020-08-17 20:24 shetoutou 阅读(999) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
posted @ 2020-08-17 20:17 shetoutou 阅读(325) 评论(0) 推荐(0) 编辑
摘要: var before = $(window).scrollTop(); //滚动事件 $(window).scroll(function() { var after = $(window).scrollTop(); if (after > before) { console.log('下') bef 阅读全文
posted @ 2020-08-17 20:16 shetoutou 阅读(745) 评论(0) 推荐(0) 编辑