angular29-ng-hide,ng-show

简介: angular29-ng-hide,ng-show

image.png

<!DOCTYPE html>
     <html lang="en">
     <head>
         <meta charset="UTF-8">
         <meta name="viewport" content="width=device-width, initial-scale=1.0">
         <title>ng-app指令</title>
         <style>
             .red {
                 color: red;
             }
             .green {
                 color: green;
             }
         </style>
     </head>
     <!-- 需要angular的代码必须包裹在ng-app的代码中 -->
     <!-- ng-bind遇到html的时候会转义 为了安全 -->
     <body ng-app="myApp1" ng-controller="ListController">
         <div>aaaa</div>
         <div class="tips" ng-show="loading">
             Loading
         </div>
         <script src="./js/Angular.js"></script>
         <!-- 隔行换色 -->
         <script>
             var myApp1 = angular.module('myApp1', []);
             myApp1.controller('ListController', ['$scope', '$timeout', function($scope,
                 $timeout) {
                 $scope.loading = true;
                 $timeout(function() {
                     $scope.loading = false;
                 }, 3000)
             }])
         </script>
     </body>
     </html>

image.png

相关文章
|
5天前
|
JavaScript 前端开发 安全
vue -- 指令 -- v-text/html/on/show/if/bind/for/model
【10月更文挑战第17天】Vue 指令是构建 Vue 应用的基础工具,掌握它们的特性和用法是成为一名优秀 Vue 开发者的重要一步。通过深入理解和熟练运用这些指令,可以打造出更加出色的前端应用。
8 2
|
API 容器
ng中的ng-content ng-template ng-container
ng中的ng-content ng-template ng-container
119 0
angular26-ng-classt隔行变色
angular26-ng-classt隔行变色
92 0
angular26-ng-classt隔行变色
angular32-其他指令ng-checked
angular32-其他指令ng-checked
76 0
angular32-其他指令ng-checked
angular28-ng-class颜色切换
angular28-ng-class颜色切换
89 0
angular28-ng-class颜色切换
|
JavaScript 前端开发 测试技术
一文了解 ng-template, ng-content, ng-container, 和 *ngTemplateOutlet的区别
一文了解 ng-template, ng-content, ng-container, 和 *ngTemplateOutlet的区别
152 0
一文了解 ng-template, ng-content, ng-container, 和 *ngTemplateOutlet的区别
Angular:why click add button does not work for the second time
Angular:why click add button does not work for the second time
Angular:why click add button does not work for the second time
|
前端开发 JavaScript 对象存储
ng-animate和ng-cookies用法
———ng-animate 本文讲一下Angular中动画应用的部分。 首先,Angular本生不提供动画机制,需要在项目中加入Angular插件模块ngAnimate才能完成Angular的动画机制,Angular也不提供具体的动画样式,所以说,它的自由度和可定制性挺大的。
1481 0
|
Ubuntu Linux 容器