alvarotrigo/vue-fullpage.js is one of the UI-focused repositories TopGit tracks, currently at 1.9k stars, written primarily in Vue. Official Vue.js wrapper for fullPage.js http://alvarotrigo.com/vue-fullpage/
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
Official Vue.js 3 wrapper for the fullpage.js library.
Codesandbox Demo
fullpage.js Extensions
By @imac2. Thanks to VasiliyGryaznoy , dragg, Raphael Owino and Jonathan Schneider.
Table of contents
Vue-fullpage.js - Official Vue.js 3 wrapper
Table of contents
Installation
License
Commercial license
Open source license
Example
Usage
Bundler (Vite)
Browser
Required HTML
Options
Delayed init
Methods
Callbacks
Dynamic changes
Usage with Nuxt.js
:construction: Usage with Gridsome
Automation
Contributing
Resources
Installation
Terminal:
// With npm
npm install --save vue-fullpage.js
License
Commercial license
If you want to use fullPage to develop nonopen sourced sites, themes, projects, and applications, the Commercial license is the appropriate license. With this option, your source code is kept proprietary. This means, you won't have to change your whole application source code to an open-source license. [Purchase a Fullpage Commercial License]
Open source license
If you are creating an open-source application under a license compatible with the GNU GPL license v3, you may use fullPage under the terms of the GPLv3.
You will have to provide a prominent notice that fullPage.js is in use. The credit comments in the JavaScript and CSS files should be kept intact (even after combination or minification).
Read more about fullPage's license.
Example
// With npm
cd example/
npm install
npm run start
Usage
Bundler (Vite)
import { createApp } from 'vue'
import App from './App.vue'
import 'vue-fullpage.js/dist/style.css'
import './fullpage.scrollHorizontally.min' // Optional. When using fullpage extensions
import VueFullPage from 'vue-fullpage.js'
const app = createApp(App)
app.use(VueFullPage)
app.mount('#app')
Notice that when using the option scrollOverflow:true or any fullPage.js extension you'll have to include the file for those features before the vue-fullpage component.
Browser
You can check a browser stand-alone demo here.
<!-- On the page head -->
<link
rel="stylesheet"
href="https://unpkg.com/vue-fullpage.js/dist/style.css"
/>
<!-- Include after Vue (before closing body) -->
<script type="module" src="https://unpkg.com/vue-fullpage.js/dist/vue-fullpage.es.js"></script>
Required HTML
This wrapper creates a <full-page> component , which you can use like other Vue.js components. For example:
You can use any options supported by fullPage.js library.
Just pass the options object into this wrapper like Vue.js property.
Options object can contain simple options as well as fullPage.js callbacks.
Notice that if you want to make use of the option scrollOverflow:true, you'll have to include the scrollOverflow file before vue-fullpage.js, as detailed above.
Full-page will init itself automatically on mount. This may not work properly when using async components inside its sections, as it has no way of knowing when said components are ready and mounted.
Use the skipInit prop to stop full-page from initializing itself. You can do it when youself by using a ref like:
Similarly, you can handle any event of the fullPage.js library.
Just translate camelCase name of callback to kebab-case and use it ;)
Dynamic changes
vue-fullpage.js will watch all changes taking place within the fullpage.js options but will NOT automatically watch any DOM changes. If you want vue-fullpage.js to react to DOM changes call the build() method after making those changes. For example:
//creating the section div
var section = document.createElement('div')
section.className = 'section'
section.innerHTML = '<h3>New Section</h3>'
//adding section
document.querySelector('#fullpage').appendChild(section)
//where --> var vm = new Vue({...}) if calling it from outside.
vm.$refs.fullpage.build()
//or, when calling it from inside the Vue component methods:
this.$refs.fullpage.build()
In order for fullPage.js to get updated after a change in any of the fullPage.js options, you'll have to make sure to use such an option in the initialization.
For example, if we want fullPage.js to get updated whenever I change the scrollBar and controlArrows options, I'll have to use the following initialisation:
Does alvarotrigo/vue-fullpage.js have a project website?
No homepage URL was recorded for alvarotrigo/vue-fullpage.js in TopGit's last sync. The README tab above frequently contains screenshots and demo links, or check the repository description on GitHub.
How active is development on alvarotrigo/vue-fullpage.js?
The most recent commit recorded on alvarotrigo/vue-fullpage.js was 1.0 years ago, based on the GitHub push timestamp. The repository has 250 forks — one of the better signals of community interest.
Is alvarotrigo/vue-fullpage.js open source?
Yes — alvarotrigo/vue-fullpage.js ships under the GPL-3.0 license, which makes its source code freely readable (and, depending on license terms, forkable and reusable). Source: github.com/alvarotrigo/vue-fullpage.js.
What license does alvarotrigo/vue-fullpage.js use?
alvarotrigo/vue-fullpage.js is released under the GPL-3.0 license. Always verify the LICENSE file directly on GitHub for the authoritative terms — license strings can be edited out of sync with a project's actual stance.
What topics is alvarotrigo/vue-fullpage.js associated with?
Where do I read more about alvarotrigo/vue-fullpage.js?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/alvarotrigo/vue-fullpage.js is the definitive source.
Read full README in the tab above.
Still deciding about vue-fullpage.js?
One click hands the question to an AI along with this page — see what it says about vue-fullpage.js.