gpt4 book ai didi

javascript - AngularJS:在固定位置元素上动画 ng-show 和 ng-hide

转载 作者:行者123 更新时间:2023-12-04 09:42:50 26 4
gpt4 key购买 nike

动画似乎不起作用。

<div ng-cloak class="customize-modal text-white" ng-show="isMenuOpened == true">
...
</div>

这是我的CSS:
.customize-modal {
position: fixed;
left: 0;
top: 50%;
transform: translateY(-50%);
background: rgba(0, 0, 0, 0.8);
max-width: 100vw;
max-height: 100vh;
overflow: scroll;
padding: 10px;
-webkit-transition: max-width 0.5s linear;
-moz-transition: max-width 0.5s linear;
-o-transition: max-width 0.5s linear;
transition: max-width 0.5s linear;
}

.customize-modal.ng-hide {
max-width: 0px;
}

我刚刚设置了 $scope.isMenuOpened true 和 false 来显示和隐藏它。

最佳答案

ng-hide类(class)放了display:none !important这就是为什么你看不到动画的原因......

为了模拟过渡,我创建了一个 my-ng-hide类(class)将我们带到 max-width :0px你打算的。按下按钮切换它并查看行为;

工作 片段 以下:

var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.addAClass = function() {
($scope.myVar) ? $scope.myVar = false: $scope.myVar = true;
}
});
.customize-modal {
position: fixed;
left: 0;
top: 50%;
transform: translateY(-50%);
background: rgba(0, 0, 0, 0.8);
width: 70vw;
max-width: 100vw;
max-height: 100vh;
overflow: scroll;
padding: 10px;
-webkit-transition: max-width 0.5s linear;
-moz-transition: max-width 0.5s linear;
-o-transition: max-width 0.5s linear;
transition: max-width 0.5s linear;
}

.customize-modal.my-ng-hide {
max-width: 0px;
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>

<div ng-app="myApp" ng-controller="myCtrl" ng-init="myVar = false">
<div id='normal' class="customize-modal " ng-class="(myVar) ? 'my-ng-hide' : ''"> </div>
<button type="button" id="myBtn" ng-click="addAClass()"> my-ng-hide class is added? {{myVar}} ... click to toggle</button>
</div>

关于javascript - AngularJS:在固定位置元素上动画 ng-show 和 ng-hide,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62255294/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com