🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

easybg.js is a simple easy jQuery plugin which allows you to automatically & periodically change a set of specific background images like a slideshow.

background-slideshow background background-image

Documentation

jquery.easybg.js

指定した背景画像を自動で切り替えるjQueryプラグイン。

使用方法

html

<div id="easybg"></div>

JavaScript

$("#easybg").easybg([options | method]);

OPTIONS

images (object Array)

画像ファイルパス 配列で複数指定できます

初期値

null

example

$(".selector").easybg({ 	images : ['/img/001.jpg', '/img/002.jpg', '/img/003.jpg'] });

interval (int)

画像を切替える間隔(ミリ秒)

初期値

30000

example

$(".selector").easybg({ 	interval : 15000 });

speed (int)

画像を切替えるスピード(ミリ秒)

初期値

1000

example

$(".selector").easybg({ 	speed : 2000 });

ignoreError (boolean)

画像の読み込みエラーを無視するかどうか設定できます。

true・・・画像の読み込みエラーを無視して処理を続行します。

false・・・画像の読み込みエラーが発生した場合処理を停止します。

初期値

false

example

$(".selector").easybg({ 	ignoreError : true });

changeMode (normal|random)

画像の切り替え順番を指定します。

normal・・・画像の切り替えの順番は配列の並び順になります。

random・・・画像の切り替えの順番はランダムになります。

初期値

normal

example

$(".selector").easybg({ 	changeMode : 'random' });

METHODS

destroy

プラグインの機能を削除します。

引数

無し

戻り値

jQueryオブジェクト

example

$(".selector").easybg('destroy');

You May Also Like