Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
code42day-antiscroll
Advanced tools
OS X Lion style cross-browser native scrolling on the web that gets out of the way.
OS X Lion style cross-browser native scrolling on the web that gets out of the way. It is a component compatible, jQuery free, clone of LearnBoost/antiscroll
Antiscroll fixes a fundamental problem JavaScript UI developers commonly face: how do I customize scrollbars so that they get out of the way (for example, for different form widgets), but retain their native scrolling properties (like OS widge scrolling velocity, or OS specific inertia)?
Antiscroll addresses this issue by providing a cross-browser implementation of the scrollbars popularized by OS X Lion that retains native properties.
Install with component(1):
$ component install code42day/antiscroll
index.html
demo)Please click here to see it in action.
antiscroll-inner
antiscroll-wrap
var antiscroll = require('Antiscroll');
antiscroll(document.querySelector('.antiscroll-wrap'));
You may remove automatic scrollbar hiding by passing in a key-value to the antiscroll()
function like so:
antiscroll(el, {
autoHide: false
});
Firefox 8 overflow: scroll
and antiscroll on OS X
IE 9 overflow: scroll
and antiscroll
The idea behind Antiscroll is to leverage real scrollbars, but hide them from the view. The implementation consists of 3 steps.
In order to measure scrollbars width we use the following technique:
overflow: scroll
The caveat of this technique is precisely OSX Lion. Since the scrollbars
float on top of the content, their width is always zero but they still
overlay your content. To address this issue we add an aditional step which
consists of declaring ::-webkit-scrollbar
and ::scrollbar
CSS
pseudo-properties that set the width of the scrollbars to zero for modern
browsers.
The parent element receives overflow: hidden
and the desired width and height
for the widget.
The inner .antiscroll-inner
element receives the same width and height, but
the script augments this two values with the size of the scrollbars,
effectively hiding them.
The inner element is always overflow: scroll
.
We attach the scroll
event to the scrollable element, and we create our
scrollbars as absolutely positioned divs. We update our scrollbars based on the
detected scrollLeft
and scrollTop
of the element.
This technique was inspired by Facebook's chat sidebar/ticker, which also reproduces Lion's scrollbars, but relying on setting the width of the inner container to an arbitrarily large width, therefore allowing scrolling of a single axis (vertical).
Scrollbar size detection based on the work of Jonathan Sharp.
jQuery plugin written by @guille Other contributors listed here
(The MIT License)
Copyright (c) 2011 Guillermo Rauch <guillermo@learnboost.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
OS X Lion style cross-browser native scrolling on the web that gets out of the way.
The npm package code42day-antiscroll receives a total of 1 weekly downloads. As such, code42day-antiscroll popularity was classified as not popular.
We found that code42day-antiscroll demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.