我正在使用ng-show #animation。
index.html: -
<body>
<div ng-view></div>
</body>
templateURL 包含:-
<button ng-init='shw=false', ng-click='shw=!shw;', class='share'> press me </button>
<div ng-init='shw=false', ng-show='shw', class='animate-show'>
<h1> this is animation showing </h1>
<h2> even in the begining which it should not </h2>
</div>
在上面的代码中,templateURL 文件在页面加载时不应显示或向上滑动。
请查看以下两个 plunkrs。
这是预期的行为
这是我们一起使用 ngAnimate 和 ngRoute 时得到的行为。