Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
The -ms-content-zoom-snap-points
CSS property is a Microsoft extension that specifies where zoom snap-points are located.
Initial value | snapInterval(0%, 100%) |
---|---|
Applies to | non-replaced block-level elements and non-replaced inline-block elements |
Inherited | no |
Media | interactive |
Computed value | as specified |
Animation type | discrete |
Canonical order | the unique non-ambiguous order defined by the formal grammar |
snapInterval( <percentage>
, <percentage>
)
Specifies where the snap-points will be placed.
snapList( <percentage>
# )
Specifies the position of individual snap-points as a comma-separated list of percentages, each of which represents a zoom factor.
-ms-content-zoom-limit-min
property, the value of -ms-content-zoom-limit-min
is used.-ms-content-zoom-limit-max
property, the value of -ms-content-zoom-limit-max
is used.snapInterval( <percentage>, <percentage> ) | snapList( <percentage># )
This example demonstrates both types of values for the -ms-content-zoom-snap-points
property. In the first selector, the first snap-point is at 0%, and the interval is set to 100%. In the second selector, each snap-point is listed separately—100%, 200%, 300%, and so on.
.snappy1 { -ms-content-zoom-snap-points: snapInterval(0%, 100%); ... } .snappy2 { -ms-content-zoom-snap-points: snapList(100%, 200%, 300%, 400%, 500%); ... }
Not part of any specification.
This property has no effect on non-zoomable elements. See -ms-content-zooming
for details on zoomable elements.
When a user pans or scrolls and then lifts his or her contact (for instance, a finger), the content can continue to move with inertia. Snap-points can change the animation that runs when the user lifts his or her finger so that you can adjust where the content will stop. By placing snap-points, you can make it easy for your users to manipulate your content and make it stop at convenient or key places.
Starting with Windows 8.1, this property is also supported for touchpad interaction.
This property requires Windows 8 or later.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-content-zoom-snap-points