我希望在执行函数时使表单的边框发光。 当调用uptdate函数(每5秒调用一次)时会发生类似脉冲的事情。就像一种表明内容已保存的方式。我怎样才能做到这一点?我查看了很多地方和许多CSS属性,但我无法想出能够产生这种效果的东西。我正在使用AngularJS和Bootstrap。
html
<div class=" container col-lg-8" id="right" >
<div id="delete-button" class="row">
<a ng-really-message="Are you sure you want to delete this note?" ng-really-click="deleteNote(note)" class="glyphicon glyphicon-trash " style="float:left;">Delete</a>
</div>
<form >
<div class="row">
<input id="note-title" type="text" class="form-control" ng-model="title" placeholder="Untitled">
<div>
<textarea id="note-body" class="form-control fadein" rows="2" cols="25"
ng-model="body" placeholder="Write your note here..." ></textarea>
</div>
</div>
</form>
<div data-fb-like=""></div>
</div>