当前位置:网站首页>Scroll detection, so that the content in the lower right corner is not displayed at the top of the page, but is displayed as the mouse slides
Scroll detection, so that the content in the lower right corner is not displayed at the top of the page, but is displayed as the mouse slides
2022-07-03 14:04:00 【starcpdk】
Download the two in the figure js Files are imported into your own project
Then introduce this in the component js
stay mounted Add this part to the hook function of
// Roll detection
var waypoint = new Waypoint({
element: document.getElementById('waypoint'), // What label does this represent
handler: function(direction) {
if (direction == "down"){
// Scrolling triggers this function
// If you slide the mouse down , Then let id by toolbar The label of shows
$('#toolbar').show(500);
}else {
// If you slide the mouse up , Then let id by toolbar Label partition of 500 Hide after milliseconds
$('#toolbar').hide(500);
}
console.log('Scrolled to waypoint!' + direction)
}
})
The effect is
Slide to the top, and the content in the following figure disappears
Slide the mouse down , The content in the figure will appear again
边栏推荐
- JS continues to explore...
- Qt学习25 布局管理器(四)
- Go 1.16.4: purpose of go mod tidy
- Golang — template
- Invalid Z-index problem
- [技术发展-24]:现有物联网通信技术特点
- Qt学习18 登录对话框实例分析
- Doxorubicin loaded on metal organic framework MIL-88 DOX | folic acid modified uio-66-nh2 doxorubicin loaded [email
- Metal organic framework MOFs loaded with non steroidal anti-inflammatory drugs | zif-8 wrapped Prussian blue loaded quercetin (preparation method)
- Configure stylelint
猜你喜欢
JVM family - overview, program counter day1-1
GoLand 2021.1: rename the go project
Message subscription and publishing
Go: send the get request and parse the return JSON (go1.16.4)
Cross linked cyclodextrin metal organic framework loaded methotrexate slow-release particles | metal organic porous material uio-66 loaded with flavonoid glycosides | Qiyue
GoLand 2021.2 configure go (go1.17.6)
QT learning 17 dialog box and its types
MySQL 数据处理值增删改
Use and design of Muduo buffer class
QT learning 19 standard dialog box in QT (top)
随机推荐
Redis:Redis的数据结构、key的操作命令
记录关于银行回调post请求405 问题
挡不住了,国产芯片再度突进,部分环节已进到4nm
Richview trvstyle liststyle list style (bullet number)
Leetcode-1175.Prime Arrangements
【556. 下一个更大元素 III】
Thrift threadmanager and three monitors
金属有机骨架材料ZIF-8包载姜黄素([email protected]纳米颗粒)|纳米金属有机框架搭载雷帕霉素|科研试剂
[développement technologique - 24]: caractéristiques des technologies de communication Internet des objets existantes
Summary of common error reporting problems and positioning methods of thrift
Qt学习22 布局管理器(一)
GoLand 2021.1: rename the go project
使用vscode查看Hex或UTF-8编码
[combinatorics] permutation and combination (examples of combinatorial number of multiple sets | three counting models | selection problem | combinatorial problem of multiple sets | nonnegative intege
Go language web development series 28: solve cross domain access of CORS with gin contrib / CORS
Mastering the cypress command line options is the basis for truly mastering cypress
PHP maze game
Use and design of Muduo buffer class
Logback log sorting
Qt学习23 布局管理器(二)