https://github.com/fromkk/jquery.bgcarousel.plugin
jQuery BgCarousel Plugin is background carousel of full screen.
https://github.com/fromkk/jquery.bgcarousel.plugin
Last synced: about 1 year ago
JSON representation
jQuery BgCarousel Plugin is background carousel of full screen.
- Host: GitHub
- URL: https://github.com/fromkk/jquery.bgcarousel.plugin
- Owner: fromkk
- License: mit
- Created: 2014-11-30T13:26:47.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-30T13:48:45.000Z (over 11 years ago)
- Last Synced: 2025-02-03T14:28:08.324Z (over 1 year ago)
- Language: JavaScript
- Size: 27 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jQuery BgCarousel Plugin
jQuery BgCarousel Plugin is background carousel of full screen.
フルスクリーン背景のカルーセルプラグインです。
imgタグとvideoタグに対応しています。
## Usage
```Javascript
$(function()
{
$('#bg_carousel').BgCarousel({
left: '#left-button', //左ボタンのセレクター
right: '#right-button', //右ボタンのセレクター
children:'li', //背景画像コンテンツのセレクター
contents:'img,video', //有効コンテンツ
duration: 500, //アニメーションのスピード
interval:3000, //アニメーションが動作する間の時間
direction:'left', //タイマーで動作するアニメーションの方向
easing:'linear', //jquery.easing.1.3.jsのイージングが有効
timer:true, //true or false
keyboard:true //true or false
});
});
```