invert()

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

試してみましょう

構文

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

ブラウザーの互換性

BCD tables only load in the browser

関連情報