Created
August 18, 2016 17:04
-
-
Save brianpetro/9eec231c64662d30bca147830c07aad6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<div ng-app="myApp"> | |
<div ng-controller="ctrl1"> | |
<div style="background-color: green; width: 100px" | |
ng-if="switch1">light 1</div> | |
</div> | |
</div> | |
<script> | |
angular.module('myApp', []) | |
.controller('ctrl1', function ( | |
$scope, $interval) { | |
$scope.switch1 = true; | |
$interval(function () { | |
$scope.switch1 = ! | |
$scope.switch1; | |
}, 1000); | |
}); | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment