angular和angularjsangularjs框架的悬浮提⽰框实现angularjs框架的悬浮提⽰框实现
第⼀步:需要添加js引⽤:
<script src="../dist/angular-popups.js"></script>
第⼆步:在JS中引⽤这个控件
有的可以这样写:
reliers.push("angular-popups");
有的可以这样写:
<script&dule('examples', ['angular-popups']);</script>
第三步:写html代码
如果只是单个显⽰那很简单,如下:
<button id="btn" ng-click="bubble.open = true">打开⽓泡</button>
<bubble ng-if="bubble.open" for="btn" close="bubble.open=false">hello world</bubble>
如果是循环显⽰,那么需要修改⼀下
<a ng-show="isShow" id={{id}} ng-mouseenter="bubble.open = true" ng-mouseleave="bubble.open = false">{{name}}</a> <bubble ng-if="isShow && bubble.open" for={{id}} close="bubble.open = false">{{msg}}</bubble>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论