我想为隐藏和显示div标签进行平滑过渡,但找不到可以使用的好示例。
编辑:通过平滑过渡,我的意思是div 会在 1-2 秒内崩溃,而不是立即崩溃。演示:https://jsfiddle.net/p21jLfu4/
<div class="test" ng-show="IsVisible"></div>
这将起作用 - 我只使用 ng-class 来覆盖高度,最初高度为 0px,单击(切换)时更改为 50px。由于 css 过渡,这件事工作顺利
<body>
<script type="text/javascript">
var app = angular.module('MyApp', [])
app.controller('MyController', function($scope) {
//This will hide the DIV by default.
$scope.IsVisible = false;
$scope.ShowHide = function() {
//If DIV is visible it will be hidden and vice versa.
$scope.IsVisible = !$scope.IsVisible;
}
});
</script>
<div ng-app="MyApp" ng-controller="MyController">
<input type="button" value="SHOW/HIDE" ng-click="ShowHide()" />
<br />
<br />
<div class="test" ng-class="{'divOpen': IsVisible}"></div>
</div>
</body>
在你的 CSS 中
.test {
background: red;
width: 200px;
height: 0px;
margin-top: -18px;
-webkit-transition: height 2s;-moz-transition: height 2s ease-in-out;-ms-transition: height 2s ease-in-out;
-o-transition: height 2s ease-in-out;transition: height 2s;
}
.divOpen{
height: 50px;
}