jQuery toast 淡入淡出提示

不想你离开。 提交于 2019-12-01 22:44:30
#toast{
    position: fixed;
    top: 44%;left:50%;transform: translateX(-50%);
    min-width: 80px;
    max-width: 180px;
    min-height: 18px;
    padding: 10px;
    line-height: 18px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    display: none;
    z-index: 999;
}

/* toast 提示 
       $("#toast").showMessage('网络错误,请稍后重试',1400);
    */
    $.fn.extend({
        showMessage: function( $msg, $time ){
            var oDiv = document.createElement("div");
            oDiv.setAttribute("id", "toast");
            var oBody = document.getElementsByTagName('body')[0];
            oBody.append(oDiv);
            $('#toast').text( $msg );
            $('#toast').fadeIn();
            setTimeout(function() {
                $('#toast').fadeOut();
            }, $time);
        }
  });   
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!