14
12

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】background-sizeプロパティをIE8以下に適用させる

Last updated at Posted at 2015-04-06

CSS3の background-size: coverは要素いっぱいに背景画像をフィットさせてくれるので、
特にレスポンシブデザインをするときなんかには便利ですね。

ただし、IE9以上からの対応となります。
IE8以下でbackground-sizeを使用可能にするにはjQueryプラグインを使用します。

#Usage

① まずは下記ページからファイルをdownloadします。

github backgroundSize.js

② jqueryとbackgroundSize.jsを読み込みます。

③ background-sizeを適用させたい要素に対して下記記述をすれば適用されます。

script.js
$(function () {

  //background-sizeを適用させたい要素
  $('element').css('background-size', 'cover/contain/幅*高さ');
  
});

もちろんIE9以上用に、CSSにもbackground-sizeを指定します。

それと、このプラグインを適用させてもCSSのbackground-sizeとは少し差異が発生するようです。
(background-positionやらheight周りをいじくる必要がありそうです。)

なので、ブラウザチェックは入念にしましょう。

※2015.04.06追記

こういったやり方もある模様
http://norm-nois.com/blog/archives/1414

14
12
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
14
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?