Skip to content

Commit fafa7e0

Browse files
committed
- Removed delay when using keyboard arrows to scroll alvarotrigo#874 alvarotrigo#333 alvarotrigo#84 - Fixed bug with IE 11 touch compatibility in touch screens alvarotrigo#937 - Fixed bug with destroy('all') fired when resizing alvarotrigo#1010 - Fixed bug with focused inputs in mobile alvarotrigo#1008 (other types besides text) - Fixed bug with navigation bullets and scrollBar:true alvarotrigo#974 - Fixed bug with Firefox on touch screens? alvarotrigo#1016 - Changed jquery default easing from `easeInQuart` to `easeInOutCubic` (more fluid) - Improved keboard accessibility controls - Scroll on moving the mouse when pressing the 3rd button (middle button) - Added class in body element after destroying fullpage.js
1 parent 19d17e0 commit fafa7e0

File tree

5 files changed

+229
-128
lines changed

5 files changed

+229
-128
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![preview](https://raw.github.com/alvarotrigo/fullPage.js/master/examples/imgs/intro.png)
44
![compatibility](https://raw.github.com/alvarotrigo/fullPage.js/master/examples/imgs/compatible.gif)
5-
![fullPage.js version](http://img.shields.io/badge/fullPage.js-v2.5.6-brightgreen.svg)
5+
![fullPage.js version](http://img.shields.io/badge/fullPage.js-v2.5.7-brightgreen.svg)
66
[![License](http://img.shields.io/badge/License-MIT-blue.svg)](http://opensource.org/licenses/MIT)
77
A simple and easy to use plugin to create fullscreen scrolling websites (also known as single page websites).
88
It allows the creation of fullscreen scrolling websites, as well as adding some landscape sliders inside the sections of the site.
@@ -117,7 +117,7 @@ $(document).ready(function() {
117117
scrollingSpeed: 700,
118118
autoScrolling: true,
119119
scrollBar: false,
120-
easing: 'easeInQuart',
120+
easing: 'easeInOutCubic',
121121
easingcss3: 'ease',
122122
loopBottom: false,
123123
loopTop: false,
@@ -200,7 +200,7 @@ $('#fullpage').fullpage({
200200

201201
**Important** It is helpful to understand that the values in the `anchors` option array correlate directly to the element with the class of `.section` by it's position in the markup.
202202

203-
- `easing`: (default `easeInQuart`) Defines the transition effect to use for the vertical and horizontal scrolling.
203+
- `easing`: (default `easeInOutCubic`) Defines the transition effect to use for the vertical and horizontal scrolling.
204204
It requires the file `vendors/jquery.easings.min.js` or [jQuery UI](http://jqueryui.com/) for using some of [its transitions](http://api.jqueryui.com/easings/). Other libraries could be used instead.
205205

206206
- `easingcss3`: (default `ease`) Defines the transition effect to use in case of using `css3:true`. You can use the [pre-defined ones](http://www.w3schools.com/cssref/css3_pr_transition-timing-function.asp) (such as `linear`, `ease-out`...) or create your own ones using the `cubic-bezier` function. You might want to use [Matthew Lein CSS Easing Animation Tool](http://matthewlein.com/ceaser/) for it.

Diff for: bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fullpage.js",
3-
"version": "2.5.6",
3+
"version": "2.5.7",
44
"homepage": "http://alvarotrigo.com/fullPage/",
55
"authors": [
66
"Alvaro Trigo https://github.com/alvarotrigo"

Diff for: jquery.fullPage.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* fullPage 2.5.6
2+
* fullPage 2.5.7
33
* https://github.com/alvarotrigo/fullPage.js
44
* MIT licensed
55
*

0 commit comments

Comments
 (0)