首页 > 语言 > JavaScript > 正文

AngularJS的一些基本样式初窥

2024-05-06 16:23:53
字体:
来源:转载
供稿:网友

这篇文章主要介绍了AngularJS的一些基本样式初窥,AngularJS是一款高人气JavaScript框架,需要的朋友可以参考下

显示和隐藏

在 Angular 中的一切,都是基于模型的改变,进而通过标识符反映这些变化到界面上。

ng-show 和 ng-hide 可以做相同的事情。显示和隐藏是基于你传递给他们的表达式而定,即,当表达式为 true 时,ng-show 就显示,反之隐藏。当表达式为 true 时,ng-hide 就隐藏,反之显示。这些标识符是通过设置元素的样式 display:block 显示和 display:none 隐藏进行工作的。

CSS类和样式

通过 {{}} 解析来进行数据绑定,从而能够动态地设置类和样式。

ng-class 和 ng-style

在大型项目中,上面的方式会使得难以管理,以至于不得不同时阅读模版和 JavaScript 才能正确地创建 css 。

Angular 提供了 ng-class 和 ng-style 标识符。他们每一个都需要一个表达式。表达式执行的结果可能是下列之一:

一个字符串,表示空间隔开的类名。

一个类名数组

一个类名到布尔值的映射

选中的行

模版中,我们设置 ng-class 的值为 {selected:$index==selectedRow},当模型调用selectedRow 时将匹配 ng-repeat 的 $index,进而显示选中的样式。同样我们设置 ng-click 来通知控制器用户点了哪一行。

src 和 href 建议

建议使用 ng-src 和 ng-href。

 

 
  1. <img ng-src="/img/01.png"
  2. <a ng-href="www.segmentfault.com">segmentfault</a> 

所有源码

 

 
  1. <!DOCTYPE html> 
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <title>angular demo</title> 
  6. <script src="http://cdn.bootcss.com/angular.js/1.3.0-beta.8/angular.min.js"></script> 
  7. </head> 
  8. <body> 
  9. <div id="App1" ng-app="shoppingCart" ng-controller="ShoppingCartController"
  10. <h1>Your demo</h1> 
  11. <!-- demo 1 --> 
  12. <div ng-show='menuState.show'>another another another</div> 
  13. <button ng-click="test2()">切换</button> 
  14.  
  15. <hr><!-- demo 2 --> 
  16. <style type="text/css"
  17. .menu-disabled-true
  18. opacity:1; 
  19. color: red; 
  20. -webkit-transition:all 1000ms linear; 
  21. -moz-transition:all 1000ms linear; 
  22. -o-transition:all 1000ms linear; 
  23. .menu-disabled-false
  24. opacity: 0; 
  25. -webkit-transition:all 1000ms linear; 
  26. -moz-transition:all 1000ms linear; 
  27. -o-transition:all 1000ms linear; 
  28. </style> 
  29. <div class="menu-disabled-{{isDisabled}}">adfadfadasda</div> 
  30. <button ng-click="test()">隐藏</button> 
  31. <button ng-click="test1()">显示</button> 
  32. <button ng-click="test11()">切换</button> 
  33.  
  34. <hr><!-- demo 3 --> 
  35. <style type="text/css"
  36. .error { 
  37. background-color: red; 
  38. .warning { 
  39. background-color: yellow; 
  40. </style> 
  41. <div ng-class='{error:isError, warning:isWarning}'>{{messageText}}</div> 
  42. <button ng-click="showError()">error</button> 
  43. <button ng-click="showWarning()">warning</button> 
  44.  
  45. <hr><!-- demo 4 --> 
  46. <style type="text/css"
  47. .selected{ 
  48. background-color: lightgreen; 
  49. </style> 
  50. <div ng-repeat="item in items" ng-class='{selected:$index==selectedRow}' ng-click='selectedWhich($index)'
  51. <span>{{item.product_name}}</span> 
  52. <span>{{item.price | currency}}</span> 
  53. </div> 
  54. </div> 
  55.  
  56. <script> 
  57. var shoppingCartModule = angular.module("shoppingCart", []) 
  58. shoppingCartModule.controller("ShoppingCartController"
  59. function ($scope) { 
  60. // demo 1 
  61. $scope.menuState = {'show':true}; 
  62. $scope.test2 = function () { 
  63. $scope.menuState.show = !$scope.menuState.show; 
  64. }; 
  65.  
  66. // demo 2 
  67. $scope.isDisabled = true
  68. $scope.test = function () { 
  69. $scope.isDisabled = 'false'
  70. }; 
  71. $scope.test1 = function () { 
  72. $scope.isDisabled = 'true'
  73. }; 
  74. $scope.test11 = function () { 
  75. $scope.isDisabled = !$scope.isDisabled; 
  76. }; 
  77.  
  78. // demo 3 
  79. $scope.isError = false
  80. $scope.isWarning = false
  81. $scope.messageText = 'default, default'
  82. $scope.showError = function () { 
  83. $scope.messageText = 'This is an error'
  84. $scope.isError = true
  85. $scope.isWarning = false
  86. }; 
  87. $scope.showWarning = function () { 
  88. $scope.messageText = 'Just a warning, donot warry'
  89. $scope.isWarning = true
  90. $scope.isError = false
  91. }; 
  92.  
  93. // demo 4 
  94. $scope.items = [ 
  95. { product_name: "Product 1", price: 50 }, 
  96. { product_name: "Product 2", price: 20 }, 
  97. { product_name: "Product 3", price: 180 } 
  98. ]; 
  99. $scope.selectedWhich = function (row) { 
  100. $scope.selectedRow = row; 
  101. ); 
  102. </script> 
  103. </body> 
  104. </html> 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选