我一直在尝试通过 Angular js 中的 jquery passthrough 来使用航点的粘性扩展。Jquery UI passthrough 一般工作,但我无法让粘性工作。这是我迄今为止尝试过的一个jsfiddle。
http://jsfiddle.net/lilacsunbird/bC5ts/
html:
<h2 class="my-sticky-element" ui-jq="waypoint" ui-options="sticky">Sticky
控制器:
angular.module('waypoints', ['ui']);
/* Controllers */
function WaypointsController($scope) {
$scope.sticky = 'sticky';
$scope.test = function(){
alert('You have scrolled to an entry.');
}
}
非常感谢