码迷,mamicode.com
首页 > 其他好文 > 详细

弹窗的淡入淡出

时间:2017-03-29 12:17:35      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:blog   time   eve   style   弹窗   message   rom   timer   htm   

var sendMsgTip = function(className,$event){
                $event.stopPropagation();
                $(className).stop(true,true).fadeIn(500);
                $(className).stop(true,true).delay(2000).fadeOut(1000);
                if (!$scope.$$phase) {
                    $scope.$apply();
                }
            }

 HTML:

<!--添加定时短信息提示信息弹层 -->
    <div class=" add-timer-tips"style="display: none;" >
        <i class="icon_three prompt-tips-icon" ></i>
        <span class="add-text-message">定时时间已过期</span>
    </div>

项目中碰到一个小bug,就是创建一个弹窗,然后点击时候触发,然后多次点击弹窗多次出现;需求是多次点击按钮只是显示最后一次的弹窗;以上使用的就是

jQuery里的stop方法解决的;淡入淡出;

2.弹窗的另一个方法;

var newsTips = {    content: ‘消息内容不能为空‘};
function showErrorTip(tip) {
$(‘.newsTips‘).text(tip);
$(‘.newsTips‘).fadeIn();
$timeout(function(){ //angularjs
$(‘.newsTips‘).fadeOut(1500);
if (!$scope.$$phase) {
$scope.$apply();
}
}, 2000);
}
 

 

弹窗的淡入淡出

标签:blog   time   eve   style   弹窗   message   rom   timer   htm   

原文地址:http://www.cnblogs.com/sxz2008/p/6639107.html

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