jquery-full-bg-unsplash

0.1.0 • Public • Published

jquery-full-bg-unsplash

jQuery plugin to change a full background image from Unsplash

Installation

npm install jquery-full-bg-unsplash

Load

<script src="/node_modules/jquery/dist/jquery.js"></script>
<script src="/node_modules/jquery-full-bg-unsplash/dist/index.js"></script>

Usage

Create a container where you want to set a full background image(div, section, article, etc.)

<div id="full-bg-random"></div>

Before using the Unsplash API, you need to register as a developer. You must put the CLIENT_ID in order to be enable to get photos from Unsplash API.

window.fullBgUnsplash.setup(clientId);

Call the plugin:

$(document).ready(function(){
  window.fullBgUnsplash.setup(clientId);

  // get random photo
  $('#full-bg-random').fullBgUnsplash({
    backgroundColor: 'red'
  });

});

Options

By default the plugin use some values:

{
  height: '100vh',
  width: '100%',
  minHeight: '800px',
  backgroundSize: 'cover',
  backgroundPosition: 'center',
  backgroundColor: 'black'
}

You can override them:

$('#full-bg-random').fullBgUnsplash({
  minHeight: '900px',
  backgroundSize: 'contain'
});

In case that endpoint of Unsplash responses with errors, you can set an image(this only is visible when Unsplash endpoint fails):

$('#full-bg-random').fullBgUnsplash({
  backgroundImage: 'path/image.jpg'
});

Testing

This will build scripts, run tests and generate a code coverage report. Anything less than 100% coverage will throw an error.

npm test

Contributing

  • ⇄ Pull requests and ★ Stars are always welcome.
  • For bugs and feature requests, please create an issue.
  • Pull requests must be accompanied by passing automated tests (npm test).

Package Sidebar

Install

npm i jquery-full-bg-unsplash

Weekly Downloads

1

Version

0.1.0

License

MIT

Unpacked Size

8.76 kB

Total Files

8

Last publish

Collaborators

  • ezavile