Angularjs Examples

AJS Examples


AngularJS ng-class Directive

The AngularJS ng-class directive is used to set css class dynamically.

Syntax

<p ng-class="{margin:1px;font-family:Cambria;font-size:20px;}">Class Example</p>

AngularJS ng-class Directive Example

<html>
<head>
<title>My first AngularJS ng-class Directive code</title>
<Script SRC="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js">
</Script>
<Script>
//Defining Controller Using Standard Javascrip Object Constructor
function CustomerController($scope) {
$scope.siteName = "www.TechStrikers.com";
$scope.clicked = function()
	{
		$scope.siteCSS = "{font-family:Cambria;font-size:20px;}";
	};
}
</Script>
</head>
<body>
<div ng-app="">
<div ng-controller="CustomerController"> 

<input id="btnButton" type="button" value="Change Font" ng-change="clicked">
{{ siteName }}
</div>
</div>
</body>
</html>
See Live Example