CSS cross-fade() Function

❮ Previous Functions Next ❯

Example

div {
  background-image: cross-fade(
    url('blue-cross-line.png'),
    url('green-cross-line.png'),
    75%);
}

Meaning

The cross-fade() css function sets blend two or more images at a defined transparency.

Version: CSS3




Standard Syntax

/* webkit vender Syntax */
-webkit-cross-fade(url('URL'), url('URL'), %);

/* Standard Syntax */
cross-fade(url('URL'), url('URL'), %);



Browser Support

The numbers in the table specify the first browser version that fully supports the property.

Note:




Status







Function Arguments

The following table describes the arguments of this function.

Argument Description
URL Specifies the source of the image.
% Specifies the percent is the opacity of the first declared image. The included percentage is subtracted from 100%, with the difference being the opacity of the second image.
❮ Previous Functions Next ❯