The easiest way I can think about is, for example, clicking on myBox changes its background-color.
html:
js:
$scope.changeBackgroundColor = function(){
angular.element('.myBox').css('background-color', '#000');
}
css:
.myBox{background-color: #fff;}
Hope I've been helpfull.