Skip to content

Commit aeb7ef3

Browse files
authored
Merge pull request #4697 from alvarotrigo/dev
Merging dev branch 4.0.35
2 parents b602759 + a67e981 commit aeb7ef3

File tree

22 files changed

+113
-36
lines changed

22 files changed

+113
-36
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ node_modules/
88
package-lock.json
99
src/fullpage.extensions.js
1010
src/js-extensions/**
11+
src/js-limited/**
1112
src/js/mixed/index.js
1213
dist/fullpage.extensions.js
14+
dist/fullpage.limited.js
15+
dist/fullpage.limited.min.js
1316
examples/bug**
1417
gulp/secret.js
1518
build/**
1619
local/**
17-
rollup.ext.config.js
20+
rollup.ext.config.js
21+
rollup.limited.config.js

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
---
2121

22-
![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.34-brightgreen.svg)
22+
![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.35-brightgreen.svg)
2323
[![License](https://img.shields.io/badge/License-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html)
2424
[![PayPal Donate](https://img.shields.io/badge/donate-PayPal.me-ff69b4.svg)](https://www.paypal.me/alvarotrigo/9.95)
2525
[![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/fullpage.js/badge?style=rounded)](https://www.jsdelivr.com/package/npm/fullpage.js)
@@ -243,6 +243,8 @@ var myFullpage = new fullpage('#fullpage', {
243243
responsiveWidth: 0,
244244
responsiveHeight: 0,
245245
responsiveSlides: false,
246+
effects: false,
247+
effectsOptions: [Object],
246248
parallax: false,
247249
parallaxOptions: {type: 'reveal', percentage: 62, property: 'translate'},
248250
dropEffect: false,
@@ -640,9 +642,18 @@ new fullpage('#fullpage', {
640642

641643
(default `false`) [Extension of fullpage.js](https://alvarotrigo.com/fullPage/extensions/). When set to `true` slides will be turned into vertical sections when responsive mode is fired. (by using the `responsiveWidth` or `responsiveHeight` options detailed above). Requires fullpage.js >= 3.0.1.
642644

645+
### effects
646+
647+
(default `false`) [Extension of fullpage.js](https://alvarotrigo.com/fullPage/extensions/slider-effects.html). Enables or disables the slider effects on sections. Requires fullpage.js >= 4.0.35
648+
649+
### effectsOptions
650+
651+
(default: `{Object}` config for the ["focus" preset](https://github.com/alvarotrigo/fullPage.js/wiki/Extension-%22Effects%22#available-presets)).
652+
Allows to configure the parameters for the effects when using the option `effects:true`. [Read more about how to apply the effects option](https://github.com/alvarotrigo/fullPage.js/wiki/Extension-%22Effects%22#effects-options-documentation).
653+
643654
### parallax
644655

645-
(default `false`) [Extension of fullpage.js](https://alvarotrigo.com/fullPage/extensions/). Defines whether or not to use the parallax backgrounds effects on sections / slides. Not compatible with `fp-auto-height` sections, `offsetSerctions` and `dragAndMove`.op [Read more about how to apply the parallax option](https://github.com/alvarotrigo/fullPage.js/wiki/Extension---Parallax).
656+
(default `false`) [Extension of fullpage.js](https://alvarotrigo.com/fullPage/extensions/parallax.html). Defines whether or not to use the parallax backgrounds effects on sections / slides. Not compatible with `fp-auto-height` sections, `offsetSerctions` and `dragAndMove`.op [Read more about how to apply the parallax option](https://github.com/alvarotrigo/fullPage.js/wiki/Extension---Parallax).
646657

647658
### parallaxOptions
648659

dist/fullpage.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* fullPage 4.0.34
2+
* fullPage 4.0.35
33
* https://github.com/alvarotrigo/fullPage.js
44
*
55
* @license GPLv3 for open source use only

dist/fullpage.extensions.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/fullpage.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* fullPage 4.0.34
2+
* fullPage 4.0.35
33
* https://github.com/alvarotrigo/fullPage.js
44
*
55
* @license GPLv3 for open source use only
@@ -2070,7 +2070,7 @@
20702070
function slideArrowHandler() {
20712071
/*jshint validthis:true */
20722072
var section = closest(this, SECTION_SEL);
2073-
var isPrevArrow = hasClass(this, SLIDES_PREV) || closest(this, SLIDES_PREV);
2073+
var isPrevArrow = hasClass(this, SLIDES_PREV) || closest(this, SLIDES_PREV_SEL);
20742074
/*jshint validthis:true */
20752075

20762076
if (isPrevArrow) {
@@ -5570,7 +5570,7 @@
55705570
});
55715571
});
55725572
var t = ["-"];
5573-
var n = "\x32\x30\x32\x35\x2d\x32\x2d\x33".split("-"),
5573+
var n = "\x32\x30\x32\x35\x2d\x33\x2d\x31".split("-"),
55745574
e = new Date(n[0], n[1], n[2]),
55755575
r = ["se", "licen", "-", "v3", "l", "gp"];
55765576

@@ -6031,7 +6031,7 @@
60316031
}; //public functions
60326032

60336033

6034-
FP.version = '4.0.34';
6034+
FP.version = '4.0.35';
60356035
FP.test = Object.assign(FP.test, {
60366036
top: '0px',
60376037
translate3d: 'translate3d(0px, 0px, 0px)',

dist/fullpage.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/fullpage.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/fullpage.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/.vscode/settings.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

lang/brazilian-portuguese/README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
---
2121

22-
![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.34-brightgreen.svg)
22+
![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.35-brightgreen.svg)
2323
[![License](https://img.shields.io/badge/License-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html)
2424
[![PayPal Donate](https://img.shields.io/badge/donate-PayPal.me-ff69b4.svg)](https://www.paypal.me/alvarotrigo/9.95)
2525
[![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/fullpage.js/badge?style=rounded)](https://www.jsdelivr.com/package/npm/fullpage.js)
@@ -243,6 +243,8 @@ var myFullpage = new fullpage('#fullpage', {
243243
responsiveWidth: 0,
244244
responsiveHeight: 0,
245245
responsiveSlides: false,
246+
effects: false,
247+
effectsOptions: [Object],
246248
parallax: false,
247249
parallaxOptions: {type: 'reveal', percentage: 62, property: 'translate'},
248250
dropEffect: false,
@@ -589,6 +591,13 @@ new fullpage('#fullpage', {
589591
### responsiveSlides
590592
(padrão `false`) [Extensão de fullpage.js](https://alvarotrigo.com/fullPage/extensions/br/). Quando definido como "true", os slides serão transformados em seções verticais quando o modo responsivo for acionado. (usando as opções `responsiveWidth` ou `responsiveHeight` detalhadas acima). Requer fullpage.js >= 3.0.1.
591593

594+
### effects
595+
(padrão: `false`) [Extensão do fullpage.js](https://alvarotrigo.com/fullPage/extensions/slider-effects.html). Ativa ou desativa os efeitos de slider nas seções. Requer fullpage.js >= 4.0.35
596+
597+
### effectsOptions
598+
(padrão: `{Object}`, configuração para o preset ["focus"](https://github.com/alvarotrigo/fullPage.js/wiki/Extension-%22Effects%22#available-presets)).
599+
Permite configurar os parâmetros dos efeitos ao usar a opção `effects:true`. [Saiba mais sobre como aplicar a opção effects](https://github.com/alvarotrigo/fullPage.js/wiki/Extension-%22Effects%22#effects-options-documentation)
600+
592601
### parallax
593602
(padrão `false`) [Extensão de fullpage.js](https://alvarotrigo.com/fullPage/extensions/br/). Define se deve ou não usar os efeitos de fundo de paralaxe em seções/slides. [Leia mais sobre como aplicar a opção de paralaxe](https://github.com/alvarotrigo/fullPage.js/wiki/Extension---Parallax).
594603

0 commit comments

Comments
 (0)