Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

bouncefix.js

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bouncefix.js

Stop full page scroll bounce on ios.

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

bouncefix.js Build Status

   __                          ____          _   
  / /  ___  __ _____  _______ / _(_)_ __    (_)__
 / _ \/ _ \/ // / _ \/ __/ -_) _/ /\ \ /   / (_-<
/_.__/\___/\_,_/_//_/\__/\__/_//_//_\_(_)_/ /___/
                                       |___/     

Stop full body elastic scroll bounce when scrolling inside nested containers (IOS)

Demos/Examples

This is an IOS specific library. Demo using your IOS device.

Demo - With Fix

Demo - Without Fix

Why?

IOS (since IOS 5) offers native touch scrolling within nested containers via -webkit-overflow-scrolling: touch;, however, if scrolling occurs at one of the extremes, top or bottom, the elastic bounce occurs on the page rather than the nested container. bouncefix.js offers a viable solution to fix this issue.

note: If there is no content to scroll, scrolling is blocked on the container. This may cause issues if attempting to implement a scroll to refresh feature. This can be overcome creating a wrapper inside of your container and setting the height to 100% with a top and bottom padding of 1px (Not perfect, hackish, but it works)

Install

npm install bouncefix.js
bower install bouncefix.js

API

Methods should not be called until the DOM is ready.

bouncefix.add(className);

Apply fix on all elements matching the specified className.

PARAMETERS:
  • *className: Elements to apply fix to.
EXAMPLE USAGE:
bouncefix.add('srcollable');

bouncefix.remove(className);

Remove fix from all elements matching the specified className.

PARAMETERS:
  • *className: Elements to remove fix from.
EXAMPLE USAGE:
bouncefix.remove('srcollable');

TESTS

Install Dependencies

npm install
bower install

Run/View

grunt test

License

The MIT License (MIT) Copyright (c) 2014 Jarid Margolin

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

Package last updated on 19 May 2014

Did you know?

Socket

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.

Install

Related posts