AngularJs Animation:动画元素下方的元素突然移动

时间:2017-02-07 05:00:03

标签: angularjs animation twitter-bootstrap-3

我开始角动画。我已经成功地为一个元素创建了一个动画,以消除一个复选框,但下面的元素突然向上移动。我应该怎么做才能使这些元素具有生命力呢?

</head>
<body ng-app="ngAnimate">
  <div ng-init="checked = true">
  <label>
    <input type="checkbox" ng-model="checked" />
    Is visible
  </label>
  <div class="content-area sample-show-hide" ng-show="checked">
    Content...
  </div>
    <div class="content-area">
    This Content is Moving up abruptly upward after I select the check box 'Is visible'. How can I move this up slowly instead?
  </div>
</div>
</body>
</html>

见     plunker here

我正在使用bootstrap,所以bootstrap有什么办法可以帮助吗?

0 个答案:

没有答案