Angularjs   发布时间:2022-04-20  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Angularjs ng-animate用于滑动效果的css过渡大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用Angular的新ng-animate功能实现滑动效果.我从演示站点获取了一些代码并准备了 fiddle.

问题是,当从数组交换项目时,滑动DIV下方的元素会不断上下移动.我尝试使用line-height但没有成功.

是否有可能解决上述问题?或者只有角度和CSS才能实现它?

您可以将输入和按钮包装在div中,并将其置于绝对位置.

这是一个demo

HTML

<div ng-app="">    
<div ng-controller='anim' >
    <div ng-repeat="item in lst"  ng-animate=" 'wave' ">
    {{item}}
    </div>
    <div class="wrapperInput">
        <input ng-model="cmt"> 
    <button ng-click="clk()"> Slide </button>
        </div>
    </div>  

</div>

CSS

</style> <!-- Ugly Hack due to jsfiddle issue: http://goo.gl/BUfGZ --> 
<script src="http://code.angularjs.org/1.1.4/angular.min.js"></script>
<style>

/**/
.wrapperInput{position:absolute;top:30px;}
/**/

.wave-enter-setup,.wave-leave-setup {
  -webkit-transition:all cubic-bezier(0.250,0.460,0.450,0.940) .5s;
  -moz-transition:all cubic-bezier(0.250,0.940) 0.5s;
  -o-transition:all cubic-bezier(0.250,0.940) 0.5s;
  transition:all cubic-bezier(0.250,0.940) .5s;
    line-height:100%;
}

.wave-enter-setup {
  position:relative;
  left:100%;
 line-height:100%;
}


.wave-enter-start {
  left:0;
line-height:100%;
}

.wave-leave-setup {
  position:absolute;
  left:0;
line-height: 100%;
}

.wave-leave-start {
  left:-100%;
  line-height: 10%;
}

JS

function anim($scope,$timeout){
    $scope.lst = [];
    $scope.master = ['[1] John who is 25 years old.','[2] jessie who is 30 years old.','[3] JohAnna who is 28 years old.','[4] Joy who is 15 years old.','[5] Mary who is 28 years old.','[6] Peter who is 95 years old.','[7] Sebastian who is 50 years old.','[8] Erika who is 27 years old.','[9] Patrick who is 40 years old.','[10] Samantha who is 60 years old.'];

$scope.lst.unshift($scope.master[Math.floor((Math.random()*10)+1)]);

    $scope.clk = function() { clik();}

    function clik() {
    //alert('here');
         $scope.lst.unshift($scope.master[Math.floor((Math.random()*10)+1)]);         
         $scope.lst.pop();  
        $timeout(function(){ clik();},2000);
    }

    clik();

};

大佬总结

以上是大佬教程为你收集整理的Angularjs ng-animate用于滑动效果的css过渡全部内容,希望文章能够帮你解决Angularjs ng-animate用于滑动效果的css过渡所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。