Results 121 - 140 of 1,081

transition

The transition CSS property is a shorthand property for transition-property, transition-duration, transition-timing-function, and transition-delay. It enables you to define the transition between two states of an element. Different states may be defined using pseudo-classes like :hover or :active or dynamically set using JavaScript.
CSS CSS Property CSS Transitions Experimental Reference

transition-delay

The transition-delay CSS property specifies the amount of time to wait between a change being requested to a property that is to be transitioned and the start of the transition effect.
CSS CSS Property CSS Transitions Experimental Reference

transition-duration

The transition-duration CSS property specifies the number of seconds or milliseconds a transition animation should take to complete. By default, the value is 0s, meaning that no animation will occur.
CSS CSS Property CSS Transitions Experimental Reference

transition-property

The transition-property CSS property is used to specify the names of CSS properties to which a transition effect should be applied.
CSS CSS Property CSS Transitions Experimental Reference

transition-timing-function

The transition-timing-function CSS property is used to describe how the intermediate values of the CSS properties being affected by a transition effect are calculated. This in essence lets you establish an acceleration curve, so that the speed of the transition can vary over its duration.
CSS CSS Property CSS Transitions Experimental Reference

var()

The var() function can be used instead of any part of a value in any property on an element. The var() function can not be used as property names, selectors or anything else besides property values. (Doing so usually produces invalid syntax or else a value whose meaning has no connection to the variable.)
CSS CSS Function CSS Variables Experimental Reference

-webkit-text-stroke-width

The -webkit-text-stroke-width CSS property specifies the width of the stroke for text.
CSS Experimental NeedsBrowserCompatibility NeedsMobileBrowserCompatibility Non-standard Reference

CanvasCaptureMediaStream

The CanvasCaptureMediaStream interface represents a MediaStream capturing in real-time the surface of an HTMLCanvasElement.
Experimental Interface Media Capture Reference Web

CanvasCaptureMediaStream.canvas

The CanvasCaptureMediaStream.canvas read-only property returns the HTMLCanvasElement associated with the stream.
CanvasCaptureMediaStream Experimental Property Read-only Reference Web

CanvasRenderingContext2D.addHitRegion()

The CanvasRenderingContext2D.addHitRegion() method of the Canvas 2D API adds a hit region to the bitmap. This allows you to make hit detection easier, lets you route events to DOM elements, and makes it possible for users to explore the canvas without seeing it.
API Canvas CanvasRenderingContext2D Experimental Method Reference

CanvasRenderingContext2D.clearHitRegions()

The CanvasRenderingContext2D.clearHitRegions() method of the Canvas 2D API removes all hit regions from the canvas.
API Canvas CanvasRenderingContext2D Experimental Method Reference

CanvasRenderingContext2D.currentTransform

The CanvasRenderingContext2D.currentTransform property of the Canvas 2D API returns or sets an SVGMatrix object for the current transformation matrix.
API Canvas CanvasRenderingContext2D Experimental Property