5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jQuery BgCarousel Plugin書いた

Last updated at Posted at 2014-11-30

logo.png

とある案件で作っていた背景全画面カルーセルが必要無くなったのでjQueryプラグインとして公開します。

jQuery.BgCarousel.Plugin(Github)

使い方

<link rel="stylesheet" href="css/jquery.bgcarousel.css" type="text/css">
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/jquery.easing.1.3.js" type="text/javascript"></script>
<script src="js/jquery.bgcarousel.js" type="text/javascript"></script>
$(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
    });
});

サンプルはこちらにアップしておきました。

自動再生
キーボードコントール
イージング

バグがあれば叱咤激励と共に頂ければ嬉しいです。
感想や実際に使ってみたサイト等あれば教えて下さい。

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?