LoginSignup
2
2

More than 5 years have passed since last update.

【Colorbox】一部だけスタイルを変える(クラスを追加する)

Last updated at Posted at 2015-04-22

知らなかったのでメモ


$('呼び出す要素').colorbox({
    onOpen: function(){
        $('#colorbox').addClass('追加したいクラス');
    },
    onClosed:function(){ //閉じるときに必ず消す。じゃないと次開くcolorboxもクラスがついたままになるので
        $("#colorbox").removeClass("追加したいクラス");
    },
});

参照:jquery - Adding classname to Colorbox dynamically - Stack Overflow

2
2
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
2
2