ngAnimate does not work with columns in bootstrap

0

Good night, I have 2 columns with bootstrap and I would like them to get excited at the ng-repeat call I have a service that returns a json that does a ng-repeat

Follow the html

    <div class="section">
      <div ng-repeat="i in dados">
        <div class="row row-eq-height" ng-if="$even">
          <div class="col-md-6 padding animate slide-top">
          <!-- <h5>Div 1 6 colunas</h5> -->
              <h5 style="font-size: 16px;"><strong>{{dados[$index].title}}</strong>&nbsp;&nbsp;<a class="btn btn-default btn-xs btn-twitter" target="_blank" href="#"><i class="fa fa-star">&nbsp;</i></a></h5>
              <span class="author-date" style="font-style: italic;">{{dados[$index].pubDate}}</span>&nbsp;<h5 class="recent-twt twitter-text" data-filter="eur chf">{{dados[$index].description}}</h5>
              <span style="color: #ccc;">by {{ dados[$index].author }}</span>&nbsp;
              <a class="btn btn-default btn-success" target="_blank" href="{{dados[$index].link}}">
              <i class="fa fa-fw fa-angle-up"></i>Abrir notícia</a>
            </div>
            <div class="col-md-6 padding animate slide-top" ng-show="dados[$index + 1]">
              <!-- <h5>Div 2 6 colunmas</h5> -->
              <h5 style="font-size: 16px;"><strong>{{dados[$index + 1].title}}</strong>&nbsp;&nbsp;<a class="btn btn-default btn-xs btn-twitter" target="_blank" href="#"><i class="fa fa-star">&nbsp;</i></a></h5>
              <span class="author-date" style="font-style: italic;">{{dados[$index + 1].pubDate}}</span>&nbsp;<h5 class="recent-twt twitter-text" data-filter="eur chf">{{dados[$index + 1].description}}</h5>
              <span style="color: #ccc;">by {{ dados[$index + 1].author }}</span>&nbsp;
              <a class="btn btn-default btn-success" target="_blank" href="{{dados[$index + 1].link}}">
              <i class="fa fa-fw fa-angle-up"></i>Abrir notícia</a>
            </div>
 

            </div>
        </div>
      </div>

I'm injecting ngAnimate into my app.js normally I'm using an auxiliary css named ngAnimate (Found at link ) What I wanted was a similar effect to the above link items But the columns do not get animated, they stay static Am I doing something wrong?

    
asked by anonymous 07.08.2018 / 03:51

0 answers