欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

AngularJS入门之动画

程序员文章站 2022-03-20 19:11:39
前言 angularjs 提供了动画效果,可以配合 css 使用。angularjs 使用动画需要引入 angular-animate.min.js 库。 &l...

前言

angularjs 提供了动画效果,可以配合 css 使用。angularjs 使用动画需要引入 angular-animate.min.js 库。

<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular-animate.min.js"></script>

还需在应用中使用模型 nganimate

<body ng-app="nganimate">

1、什么是动画?

动画是通过改变 html 元素产生的动态变化效果。

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
div {
 transition: all linear 0.5s;
 background-color: lightblue;
 height: 100px;
 width: 100%;
 position: relative;
 top: 0;
 left: 0;
}
 
.ng-hide {
 height: 0;
 width: 0;
 background-color: transparent;
 top:-200px;
 left: 200px;
}
</style>
<script src="js/angular.min.js"></script>
<script src="js/angular-animate.min.js"></script>
</head>
<body ng-app="nganimate">
<h3>隐藏 div: <input type="checkbox" ng-model="mycheck"></h3>
<div ng-hide="mycheck"></div>
</body>
</html>

AngularJS入门之动画

如果我们应用已经设置了应用名,可以把 nganimate 直接添加在模型中: 

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
div {
 transition: all linear 0.5s;
 background-color: lightblue;
 height: 100px;
 width: 100%;
 position: relative;
 top: 0;
 left: 0;
}
 
.ng-hide {
 height: 0;
 width: 0;
 background-color: transparent;
 top:-200px;
 left: 200px;
}
</style>
<script src="js/angular.min.js"></script>
<script src="js/angular-animate.min.js"></script>
</head>
<body ng-app="myapp">
<h3>隐藏 div: <input type="checkbox" ng-model="mycheck"></h3>
<div ng-hide="mycheck"></div>
<script>
var app = angular.module('myapp', ['nganimate']);
</script>
</body>
</html>

2、nganimate 做了什么?

nganimate 模型可以添加或移除 class 。nganimate 模型并不能使 html 元素产生动画,但是 nganimate 会监测事件,类似隐藏显示 html 元素 ,如果事件发生 nganimate 就会使用预定义的 class 来设置 html 元素的动画。angularjs 添加/移除 class 的指令:ng-show、ng-hide、ng-class、ng-view、ng-include、ng-repeat、ng-if、ng-switch

(1)、ng-class指定 html 元素使用的 css 类

ng-class 指令用于给 html 元素动态绑定一个或多个 css 类。ng-class 指令的值可以是字符串,对象,或一个数组。如果是字符串,多个类名使用空格分隔。如果是对象,需要使用 key-value 对,key 是一个布尔值,value 为你想要添加的类名。只有在 key 为 true 时类才会被添加。如果是数组,可以由字符串或对象组合组成,数组的元素可以是字符串或对象。

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>angularjs</title>
<script src="js/angular.min.js"></script>
<script src="js/angular-animate.js"></script>
<style>
.sky {
  color:white;
  background-color:lightblue;
  padding:20px;
  font-family:"courier new";
}
.tomato {
  background-color:coral;
  padding:40px;
  font-family:verdana;
}
</style>
</head>
<body ng-app="">
<span>选择一个类:</span>
<select ng-model="home">
<option value="sky">天空色</option>
<option value="tomato">番茄色</option>
</select>
<div ng-class="home">
 <h3>welcome home!</h3>
 <h4>i like it!</h4>
</div>
</body>
</html>

AngularJS入门之动画

(2)、ng-class-even类似 ng-class,但只在偶数行起作用;ng-class-odd 类似 ng-class,但只在奇数行起作用

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>angularjs</title>
<script src="js/angular.min.js"></script>
<style>
.stripedeven {
  color:white;
  background-color:cyan;
}
.stripedodd{
 color:white;
  background-color:yellowgreen;
}
</style>
</head>
<body ng-app="myapp">
<table ng-controller="myctrl" border="1px">
<tr>
 <th>name</th>
 <th>country</th>
</tr>
<tr ng-repeat="x in records" ng-class-even="'stripedeven'" ng-class-odd="'stripedodd'">
 <td>{{x.name}}</td>
 <td>{{x.country}}</td> 
</tr>
</table>
<script>
var app = angular.module("myapp", []);
app.controller("myctrl", function($scope) {
 $scope.records = [
  {
   "name" : "alfreds futterkiste",
   "country" : "germany"
  },
  {
   "name" : "berglunds snabbk",
   "country" : "sweden"
  },
  {
   "name" : "centro comercial moctezuma",
   "country" : "mexico"
  },
  {
   "name" : "ernst handel",
   "country" : "austria"
  }
 ]
});
</script>
</body>
</html>

AngularJS入门之动画

(3)、ng-if如果条件为 false 移除 html 元素

ng-if 指令用于在表达式为 false 时移除 html 元素。如果 if 语句执行的结果为 true,会添加移除元素,并显示。ng-if 指令不同于 ng-hideng-hide 隐藏元素,而 ng-if 是从 dom 中移除元素。

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>angularjs</title>
<script src="js/angular.min.js"></script>
</head>
<body ng-app="" ng-init="myvar = true">
<h3>保留 html: <input type="checkbox" ng-model="myvar" ></h3>
<div ng-if="myvar">
<h1>welcome</h1>
<p>welcome to my home.</p>
<hr>
</div>
<p>当复选框取消选中时 div 元素将移除。</p>
<p>当重新选中复选框,div 元素会重新显示。</p>
</body>
</html>

AngularJS入门之动画

(4)、ng-checked规定元素是否被选中

ng-checked 指令用于设置复选框(checkbox)或单选按钮(radio)的 checked 属性。如果 ng-checked 属性返回 true,复选框(checkbox)或单选按钮(radio)将会被选中。

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>angularjs</title>
<script src="js/angular.min.js"></script>
</head>
<body ng-app="">
  <h3>my cars:</h3>
  <input type="checkbox" ng-model="all"> check all<br>
  <input type="checkbox" ng-checked="all">volvo<br>
  <input type="checkbox" ng-checked="all">ford<br>
  <input type="checkbox" ng-checked="all">mercedes
  <h3>点击 "check all" 选择所有的车。</h3>
</body>
</html>

 AngularJS入门之动画

3、使用 css 动画

我们可以使用 css transition(过渡) 或 css 动画让 html 元素产生动画效果。

(1)、css 过渡

css 过渡可以让我们平滑的将一个 css 属性值修改为另外一个:在 div 元素设置了 .ng-hide 类时,过渡需要花费 0.5 秒,高度从 100px 变为 0。

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>angularjs</title>
<script src="js/angular.min.js"></script>
<script src="js/angular-animate.min.js"></script>
<style>
div {
 transition: all linear 0.5s;
 background-color: lightblue;
 height: 100px;
}
.ng-hide {
 height: 0;
}
</style>
</head>
<body ng-app="myapp">
<h1>隐藏 div: <input type="checkbox" ng-model="mycheck"></h1>
<div ng-hide="mycheck"></div>
<script>
var app = angular.module('myapp', ['nganimate']);
</script>
</body>
</html>

(2)、css 动画

css 动画允许你平滑的修改 css 属性值:在 div 元素设置了 .ng-hide 类时, mychange 动画将执行,它会平滑的将高度从 100px 变为 0。

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>angularjs</title>
<script src="js/angular.min.js"></script>
<script src="js/angular-animate.min.js"></script>
<style>
@keyframes mychange {
 from {
   height: 100px;
 } to {
   height: 10;
 }
}
div {
 height: 100px;
 background-color: lightblue;
}
div.ng-hide {
 animation: 10s mychange;
}
</style>
</head>
<body ng-app="nganimate">
隐藏 div: <input type="checkbox" ng-model="mycheck">
<div ng-hide="mycheck">
</div>
</body>
</html>

总结

以上就是关于angularjs动画的全部内容,本文总结的很详细,并提供了实例代码,希望对学些angularjs的大家有所帮助