|
7 | 7 | <a href="https://github.com/alvarotrigo/fullPage.js"><img src="https://raw.githubusercontent.com/alvarotrigo/fullPage.js/dev/examples/imgs/en-language.png" /></a><a href="https://github.com/alvarotrigo/fullPage.js/blob/dev/README_SPANISH.md#fullpagejs"><img src="https://raw.githubusercontent.com/alvarotrigo/fullPage.js/dev/examples/imgs/es-language-inactive.png" /></a>
|
8 | 8 | </p>
|
9 | 9 |
|
10 |
| - |
| 10 | +<p align="center"> |
| 11 | + <a href="http://alvarotrigo.com/fullPage/utils/wordpress-y-theme.html"><img src="http://alvarotrigo.com/fullPage/imgs/wodpress-y-theme-fullpage1.png" /></a> |
| 12 | +</p> |
| 13 | + |
| 14 | + |
11 | 15 | [](http://opensource.org/licenses/MIT)
|
12 | 16 | 7Kb gziped!
|
13 | 17 |
|
14 | 18 | A simple and easy to use plugin to create fullscreen scrolling websites (also known as single page websites or onepage sites).
|
15 | 19 | It allows the creation of fullscreen scrolling websites, as well as adding some landscape sliders inside the sections of the site.
|
16 | 20 |
|
17 | 21 | - [Live demo](http://alvarotrigo.com/fullPage/)
|
18 |
| -- [Wordpress theme](https://goo.gl/HuFudq) |
| 22 | +- [Wordpress theme 1](http://alvarotrigo.com/fullPage/utils/wordpress-y-theme.html) |
| 23 | +- [Wordpress theme 2](http://alvarotrigo.com/fullPage/utils/wordpress.html) |
19 | 24 | - [fullpage.js Extensions](http://alvarotrigo.com/fullPage/extensions/)
|
20 | 25 | - [Frequently Answered Questions](https://github.com/alvarotrigo/fullPage.js/wiki/FAQ---Frequently-Answered-Questions)
|
21 | 26 |
|
@@ -152,7 +157,7 @@ $(document).ready(function() {
|
152 | 157 | navigationPosition: 'right',
|
153 | 158 | navigationTooltips: ['firstSlide', 'secondSlide'],
|
154 | 159 | showActiveTooltip: false,
|
155 |
| - slidesNavigation: true, |
| 160 | + slidesNavigation: false, |
156 | 161 | slidesNavPosition: 'bottom',
|
157 | 162 |
|
158 | 163 | //Scrolling
|
@@ -315,15 +320,16 @@ Embedded HTML5 `<video>` / `<audio>` and Youtube iframes are automatically paus
|
315 | 320 | ###Use extensions
|
316 | 321 | fullpage.js [provides a set of extensions](http://alvarotrigo.com/fullPage/extensions/) you can use to enhance its default features. All of them are listed as [fullpage.js options](https://github.com/alvarotrigo/fullPage.js#options).
|
317 | 322 |
|
318 |
| -Extensions requires you to use the minified file `jquery.fullpage.extensions.min.js` instead of the usual fullPage.js file (`jquery.fullpage.js`). |
319 |
| -Once you adquire the extension file, you will need to add it before fullPage.js. For example: |
| 323 | +Extensions requires you to use the minified file [`jquery.fullpage.extensions.min.js`](https://github.com/alvarotrigo/fullPage.js/blob/master/dist/jquery.fullpage.extensions.min.js) that is inside the [`dist` folder](https://github.com/alvarotrigo/fullPage.js/tree/master/dist) instead of the usual fullPage.js file (`jquery.fullpage.js` or `jquery.fullpage.min.js`). |
| 324 | + |
| 325 | +Once you adquire the extension file, you will need to add it before fullPage. For example, if I want to use the Continuos Horizontal extension, I would have include the extension file and then the extensions version of the fullPage file. |
320 | 326 |
|
321 | 327 | ```html
|
322 | 328 | <script type="text/javascript" src="fullpage.continuousHorizontal.min.js"></script>
|
323 | 329 | <script type="text/javascript" src="fullpage/jquery.fullpage.extensions.min.js"></script>
|
324 | 330 | ```
|
325 | 331 |
|
326 |
| -A license key will be required for each extension. [See more details about it here](https://github.com/alvarotrigo/fullPage.js/wiki/How-to-activate-a-fullPage.js-extension). |
| 332 | +An activation key and a license key will be required for each extension. [See more details about it here](https://github.com/alvarotrigo/fullPage.js/wiki/How-to-activate-a-fullPage.js-extension). |
327 | 333 |
|
328 | 334 | Then you will be able to use and configure them as explained in [options](https://github.com/alvarotrigo/fullPage.js#options).
|
329 | 335 |
|
@@ -410,7 +416,7 @@ To define the percentage of each section the attribute `data-percentage` must be
|
410 | 416 |
|
411 | 417 | - `animateAnchor`: (default `true`) Defines whether the load of the site when given an anchor (#) will scroll with animation to its destination or will directly load on the given section.
|
412 | 418 |
|
413 |
| -- `recordHistory`: (default `true`) Defines whether to push the state of the site to the browser's history. When set to `true` each section/slide of the site will act as a new page and the back and forward buttons of the browser will scroll the sections/slides to reach the previous or next state of the site. When set to `false`, the URL will keep changing but will have no effect ont he browser's history. This option is automatically turned off when using `autoScrolling:false`. |
| 419 | +- `recordHistory`: (default `true`) Defines whether to push the state of the site to the browser's history. When set to `true` each section/slide of the site will act as a new page and the back and forward buttons of the browser will scroll the sections/slides to reach the previous or next state of the site. When set to `false`, the URL will keep changing but will have no effect on the browser's history. This option is automatically turned off when using `autoScrolling:false`. |
414 | 420 |
|
415 | 421 | - `menu`: (default `false`) A selector can be used to specify the menu to link with the sections. This way the scrolling of the sections will activate the corresponding element in the menu using the class `active`.
|
416 | 422 | This won't generate a menu but will just add the `active` class to the element in the given menu with the corresponding anchor links.
|
@@ -847,7 +853,8 @@ To see the list of recent changes, see [Releases section](https://github.com/alv
|
847 | 853 | Want to build fullpage.js distribution files? Please see [Build Tasks](https://github.com/alvarotrigo/fullPage.js/wiki/Build-tasks)
|
848 | 854 |
|
849 | 855 | #Resources
|
850 |
| -- [Wordpress theme](https://goo.gl/HuFudq) |
| 856 | +- [Wordpress theme 1](http://alvarotrigo.com/fullPage/utils/wordpress-y-theme.html) |
| 857 | +- [Wordpress theme 2](http://alvarotrigo.com/fullPage/utils/wordpress.html) |
851 | 858 | - [CSS Easing Animation Tool - Matthew Lein](http://matthewlein.com/ceaser/) (useful to define the `easingcss3` value)
|
852 | 859 | - [fullPage.js jsDelivr CDN](http://www.jsdelivr.com/#!jquery.fullpage)
|
853 | 860 | - [fullPage.js plugin for October CMS](http://octobercms.com/plugin/freestream-parallax)
|
|
0 commit comments