will-change css multiple properties code example
Example: will change css
/** Example */
will-change: transform, opacity;
/** All all of above */
will-change: all;
/** no effect on hover */
.potato:hover {
will-change: opacity;
opacity:1;
}
/** Example */
will-change: transform, opacity;
/** All all of above */
will-change: all;
/** no effect on hover */
.potato:hover {
will-change: opacity;
opacity:1;
}