码迷,mamicode.com
首页 > Web开发 > 详细

bootstrap tooltips在 angularJS中的使用

时间:2019-04-09 18:57:37      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:ima   init   png   targe   代码   创建   too   tom   boot   

使用bootstrap自带的提示控件,省去了不少事情

<div class="s2" ng-init="InitTooltip()">
   <input type="text" ng-pattern="/^(http|https|ftp)\://[a-zA-Z0-9\.\,\?\‘\\/\+&amp;%\$\#\=~:_\-\s@]+$/" class="inputwords" id="txtExamination" name="txtExamination" ng-model="csInfo.ExamUrl" placeholder="测验地址">
   <span data-toggle="tooltip" data-placement="top" data-html="true" title="1、点击《新建测验》按钮 <br/> 2、测验创建完成后,点击页面右上角《共享》按钮>点击《复制》按钮 <br/> 3、把复制的url粘贴到此处即可" style="cursor: pointer;">
<
i class="fa fa-question-circle-o examSpan"></i>
</
span> <span style="margin-left: 88px; width: 8px;"> <a target="_blank" href="https://forms.office.com/Pages/DesignPage.aspx">创建测验</a></span> </div>

控制器或者js代码:

        $scope.InitTooltip = function() {
            //初始化tips提示控件
            $("[data-toggle=‘tooltip‘]").tooltip();
        };

控制颜色,类名是生成弹出层后的类名:

/**控制弹出层颜色和大小*/
.tooltip-inner {
    background: #fafafa !important;
    text-align: left !important;
    color: #363636 !important;
    border: 1px solid #dedede;
    max-width: 400px !important;
    padding: 4px;
}

/**控制小三角透明度*/
.tooltip-arrow{
    border-bottom-color: #ffffff !important;
    opacity: 0.3;
}

默认背景颜色

技术图片

设置颜色后

技术图片

 

bootstrap tooltips在 angularJS中的使用

标签:ima   init   png   targe   代码   创建   too   tom   boot   

原文地址:https://www.cnblogs.com/dawenyang/p/10678673.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!