1.0.1 • Published 6 years ago

jq-bgrandom v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

jq-BgRandom

Change full random background

Installation

$   npm install jq-BgRandom
You need to load jQuery first
<script src="/node_modules/jquery/dist/jquery.js"></script>
<script src="/node_modules/jq-bgRandom/src/index.js"</script>

Before using the Unsplash API, you need to register as developer then you must put the CLIENT_ID to be enable to get photos.

window.BgRandom.setup(clientId);

How it works?

<div id="bg-unsplash"></div>
$(document).ready(function() {
	window.BgRandom.setup(clientId);
    $('#bg-unsplash').bgRandom({
      minHeight: '700px', // by default it´s 800px
      backgroundSize: 'contain', // by default it´s cover
      backgroundPosition: 'top center', // by default its center
      backgroundColor: 'red' // by default it´s black
    });
});