滚动事件触发 ScrollStop
- 授权协议: Unlicense
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/ssorallen/jquery-scrollstop
软件介绍
ScrollStop 是一个 jQuery 插件,当在 Windows 系统上开始滚动和停止滚动的时候,jQuery 会触发两个事件:scrollstart 和 scrollstop。
示例代码:
$(window)
.on("scrollstart", function() { // Paint the world yellow when scrolling starts.
$(document.body).css({background: "yellow"});
})
.on("scrollstop", function() { // Paint it all green when scrolling stops.
$(document.body).css({background: "green"});
})
C Primer Plus(第6版)中文版
普拉达 (Stephen Prata) / 姜佑 / 人民邮电出版社 / 2016-4-1 / CNY 89.00
《C Primer Plus(第6版)中文版》详细讲解了C语言的基本概念和编程技巧。 《C Primer Plus(第6版)中文版》共17章。第1、2章介绍了C语言编程的预备知识。第3~15章详细讲解了C语言的相关知识,包括数据类型、格式化输入/输出、运算符、表达式、语句、循环、字符输入和输出、函数、数组和指针、字符和字符串函数、内存管理、文件输入输出、结构、位操作等。第16章、17章介绍C......一起来看看 《C Primer Plus(第6版)中文版》 这本书的介绍吧!
