简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"> <link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/> <style> div { transition: all linear 0.5s; background-color: green; height: 32px; line-height: 33px; width: 100%; color: #fff; text-align: center; vertical-align: middle; position: relative; top: 0; left: 0; } .ng-hide { height: 0; width: 0; background-color: transparent; top:-200px; left: 200px; } </style> <script src="https://cdn.staticfile.org/angular.js/1.6.3/angular.min.js"></script> <script src="https://cdn.staticfile.org/angular.js/1.6.3/angular-animate.min.js"></script> <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>
运行结果: