Movatterモバイル変換


[0]ホーム

URL:


  1. 開発者向けのウェブ技術
  2. CSS
  3. リファレンス
  4. <filter-function>
  5. invert()

このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docsコミュニティーについてもっと知り、仲間になるにはこちらから。

View in EnglishAlways switch to English

invert()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2016年9月⁩.

invert()CSS関数で、入力画像の色サンプルを反転します。結果は<filter-function> です。

試してみましょう

filter: invert(0);
filter: invert(0.3);
filter: invert(50%);
filter: invert(70%);
filter: invert(1);
<section>  <img          src="/shared-assets/images/examples/firefox-logo.svg"    width="200" /></section>

構文

css
invert(amount)

引数

amount

変換の度合いで、<number> または<percentage> で指定します。100% の値では完全に反転され、0% の値では入力が変更されないままになります。0%100% の間の値は、効果の割合です。補間の初期値は0 です。

invert() の正しい値の例

css
invert(0)     /* 効果なし */invert(.6)    /* 60% 反転 */invert(100%)  /* 完全に反転 */

仕様書

Specification
Filter Effects Module Level 1
# funcdef-filter-invert

ブラウザーの互換性

関連情報

その他のfilter およびbackdrop-filter プロパティの値で使用できる<filter-function> 関数には、次のものがあります。

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp