简单教程
提交运行
代码编辑器:
<!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="ngAnimate">隐藏 DIV: <input type="checkbox" ng-model="myCheck"> <div ng-hide="myCheck">简单教程,简单编程</div> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer> </body>
运行结果: