Skip to content

Instantly share code, notes, and snippets.

@jonrrivera
Forked from danro/Page-level body code.html
Created June 27, 2016 03:10
Show Gist options
  • Save jonrrivera/b74278867b2d0a54df63bff04dc92b1d to your computer and use it in GitHub Desktop.
Save jonrrivera/b74278867b2d0a54df63bff04dc92b1d to your computer and use it in GitHub Desktop.
Webflow integration with fullpage.js
<script>
// Initialize fullpage plugin on document ready
Webflow.push(function() {
$('#fullpage').fullpage();
});
// Define module for Editor compatibility
Webflow.define('fullpage-destroy', function() {
return {
destroy: function() {
$.fn.fullpage.destroy('all');
}
};
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment