JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 43
  • Score
    100M100P100Q67264F
  • License GPL-3.0

Create fullscreen scrolling websites

Package Exports

  • fullview

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fullview) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

FullView.Js

Javascript | JQuery Plugin

Create full screen pages fast and simple - A simple and easy to use library that creates fullscreen scrolling websites.

Compatibility

Android 4.1+ Safari 7.1+ IE 9+ Opera Chrome firefox

GitHub release License

Demo online | Codepen


Get Started

Dependency: jQuery 1.1+ All you will need to include:

  • The JavaScript file fullview.js (or its minified version fullview.min.js)
  • The css file fullview.css (or its minified version fullview.min.css)

Including files:

<link rel="stylesheet" type="text/css" href="fullview.css" />

<!-- Javascript Files -->
<script  src="https://code.jquery.com/jquery-3.5.1.min.js"  crossorigin="anonymous"></script>

<script type="text/javascript" src="fullview.js"></script>

Using CDNS

Optionally, If you prefer to use a CDN to load the needed files,

https://unpkg.com/fullview/dist/fullview.min.css
https://unpkg.com/fullview/dist/fullview.min.js

Using NPM

Optionally, you can install fullView.js with npm

npm install fullview

Usage

HTML Structure

<div id="fullview">
        <div>
            <!-- Your Code -->
        </div>
        <div>
           <!-- Your Code -->
        </div>
        <div>
            <!-- Your Code -->
        </div>
        <div>
            <!-- Your Code -->
        </div>
    </div>

Initialization

$("#fullview").fullView({
    //Navigation
    dots:  true,
    dotsPosition:  'right',

    //Scrolling
    easing:  'swing',

    // Callback
    onViewChange:  function (currentView) {
     console.log(currentView)
    }
})

Options

Option Type Default Values
dot boolean true true or false
dotsPosition string "right" right or left
easing string "linear" swing or linear

License

If you are creating an open source application under a license compatible with the GNU GPL license v3, you may use it under the terms of the GPLv3.