首页 > 编程 > JavaScript > 正文

AngularJS教程 ng-style 指令简单示例

2019-11-20 09:19:18
字体:
来源:转载
供稿:网友

AngularJS ng-style 指令

AngularJS 实例

使用AngularJS添加样式,使用 CSS key=>value 对象格式:

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body ng-app="myApp" ng-controller="myCtrl"><h1 ng-style="myObj">菜鸟教程</h1><script>var app = angular.module("myApp", []);app.controller("myCtrl", function($scope) { $scope.myObj = {  "color" : "white",  "background-color" : "coral",  "font-size" : "60px",  "padding" : "50px" }});</script></body></html>

定义和用法

ng-style 指令为 HTML 元素添加 style 属性。

ng-style 属性值必须是对象,表达式返回的也是对象。

对象由 CSS 属性和值注册,即 key=>value 对。

语法

<element ng-style="expression"></element>

所有的 HTML 元素都支持该属性。

参数值

描述
string 表达式返回由 CSS 属性和值组成的对象。

以上就是对AngularJS ng-style 指令的资料整理,后续继续补充,谢谢大家对本站的支持!

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