You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `pageScroll` | | | Attribute adding scroll-animation behavior when the `click`-event happens on the element.
183
-
| `pageScrollTarget` | string | | Optional attribute to set the element that should be scrolled to. Takes precedence over the ´href´-value
184
-
| `pageScrollHorizontal` | boolean | false | Whether the scroll should happen in vertical direction (`false`, default) or horizontal (`true`).
185
-
| `pageScrollOffset` | number | 0 | Pixels to offset from the top of the element when scrolling to (positive value = scrolling will stop given pixels atop the target element).
186
-
| `pageScrollDuration` | number | 1250 | Duration in milliseconds the whole scroll-animation should last.
187
-
| `pageScrollSpeed` | number | - | Speed in Pixel/Second the animation should take. Only applied if no duration is set.
188
-
| `pageScrollInView` | boolean | true | Whether the scroll animation should happen even when the scroll target is already inside the view port (`true`). Set to `false` to skip scroll animation if target is already in view.
189
-
| `pageScrollInterruptible` | boolean | true | Whether the scroll animation should stop if the user interferes with it (`true`) or not (`false`).
190
-
| `pageScrollAdjustHash` | boolean | false | Whether the [routes hash/fragment](https://angular.io/docs/ts/latest/guide/router.html#!#query-parameters) should be updated to reflect to section that has been scrolled to
191
-
| `pageScrollEasing` | EasingLogic | linearEasing | Easing method to be used while calculating the scroll position over time (default is linear easing).
184
+
|`pageScroll`||| Attribute adding scroll-animation behavior when the `click`-event happens on the element.|
185
+
|`pageScrollTarget`| string || Optional attribute to set the element that should be scrolled to. Takes precedence over the ´href´-value|
186
+
|`pageScrollHorizontal`| boolean | false | Whether the scroll should happen in vertical direction (`false`, default) or horizontal (`true`).|
187
+
|`pageScrollOffset`| number | 0 | Pixels to offset from the top of the element when scrolling to (positive value = scrolling will stop given pixels atop the target element).|
188
+
|`pageScrollDuration`| number | 1250 | Duration in milliseconds the whole scroll-animation should last.|
189
+
|`pageScrollSpeed`| number | - | Speed in Pixel/Second the animation should take. Only applied if no duration is set.|
190
+
|`pageScrollInView`| boolean | true | Whether the scroll animation should happen even when the scroll target is already inside the view port (`true`). Set to `false` to skip scroll animation if target is already in view.|
191
+
|`pageScrollInterruptible`| boolean | true | Whether the scroll animation should stop if the user interferes with it (`true`) or not (`false`).|
192
+
|`pageScrollAdjustHash`| boolean | false | Whether the [routes hash/fragment](https://angular.io/docs/ts/latest/guide/router.html#!#query-parameters) should be updated to reflect to section that has been scrolled to|
193
+
|`pageScrollEasing`| EasingLogic | linearEasing | Easing method to be used while calculating the scroll position over time (default is linear easing).|
| `pageScrollFinish` | boolean | Fired when the scroll-animation stops. Emits a boolean value which indicates whether the scroll animation finished successfully and reached its target (`true`) or not (`false`). Possible reasons for false: target not found or interrupted due to another scroll animation starting or user interaction.
199
+
|`pageScrollFinish`| boolean | Fired when the scroll-animation stops. Emits a boolean value which indicates whether the scroll animation finished successfully and reached its target (`true`) or not (`false`). Possible reasons for false: target not found or interrupted due to another scroll animation starting or user interaction.|
0 commit comments