非标
此特征是非标准的,且不在标准轨道中。不要在面向 Web 的生产站点中使用它:它不适用于每个用户。实现之间可能存在大的不兼容性,且行为将来可能改变。

-ms-content-zoom-snap-points CSS 特性为 Microsoft extension that specifies where zoom snap-points are located.

初始值 snapInterval(0%, 100%)
适用于 non-replaced block-level elements and non-replaced inline-block elements
继承 no
计算值 如指定
动画类型 discrete

句法

snapInterval( <percentage> , <percentage> )

Specifies where the snap-points will be placed.

  • The first percentage specifies where the first snap-point will be placed.
  • The second percentage specifies the distance between subsequent snap-points, both zoomed in and zoomed out from the initial snap-point.
snapList( <percentage> # )

Specifies the position of individual snap-points as a comma-separated list of percentages, each of which represents a zoom factor.

形式句法

  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.

元数据

  • 最后修改:
  1. CSS
  2. CSS 参考