jquery实现网站客服聊天窗口弹出打开效果代码

代码语言:html

所属分类:其他

代码描述:jquery实现网站客服聊天窗口弹出打开效果代码

代码标签: 客服 聊天 窗口 弹出 打开 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <style>
@charset "utf-8";html {
        margin: 0;
        padding: 0;
        border: 0
    }

        body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,code,del,dfn,em,q,dl,dt,dd,ol,ul,li,fieldset,form,legend,caption,tbody,tfoot,thead,article,aside,dialog,figure,footer,header,nav,section {
            list-style: none;
            margin: 0;
            padding: 0;
            font: inherit;
            vertical-align: baseline
        }

        article,aside,details,figcaption,figure,dialog,footer,header,menu,nav,section {
            display: block
        }

        .fl {
            float: left
        }

        .fr {
            float: right
        }

        .guanggao-dbbox {
            width: 240px;
            min-height: 320px;
            padding-bottom: 10px;
            background-color: #ededed;
            position: fixed;
            z-index: 1;
            bottom: 0;
            left: 0;
            border-radius: 5px 5px 0 0;
            overflow: hidden
        }

        .changedw {
            left: 50%;
            bottom: 50%!important;
            z-index: 99999;
            margin-left: -120px;
            margin-bottom: -160px
        }

        #nb-show,#nb-gb {
            display: none
        }

        .nb-nodeboard-top {
               background-color: #edb518;
            height: 36px;
            line-height: 36px;
            color: #fff;
            font-size: 15px
        }

        .nb-nodeboard-top .fl {
            margin-left: 8px
        }

        .nb-nodeboard-top .fr img {
            vertical-align: middle
        }

        .nb-nodeboard-text {
            zoom: 1;
            padding: 12px 0;
            line-height: 1.5;
            border-bottom: 1px solid #d5d5d5;
            font-size: 15px
        }

        .nb-nodeboard-link {
            color: #999;
            font-size: 12px
        }

        .nb-nodeboard-text p {
            padding-left: 10px
        }

        #nb_nodeboard_form {
            width: 94%;
            margin: 0 auto;
            display: block
        }

        #nb-nodeboard-set-content-js {
            width: 96%;
            height: 79px;
            margin: 10px auto 0;
            padding: 4px;
            resize: none;
            overflow: hidden;
            border: 1px solid #d5d5d5;
            background-color: #fff;
            text-align: left;
            font-size: 12px
        }

        .nb-nodeboard-tips,.nb-nodeboardphone-tips {
            display: none;
            color: red;
            font-size: 12px
        }

        .nb-nodeboard-inputbox {
            height: 30px;
            width: 100%;
            line-height: 30px;
            margin: 7px auto 0;
            border: 1px solid #d5d5d5;
            position: relative;
            background-color: #fff;
            overflow: hidden
        }

        .nb-nodeboard-inputbox input {
            width: 195px;
            border: none;
            font-size: 12px
        }

        .nb-nodeboard-icon {
            width: 24px;
            height: 28px;
            display: inline-block;
            text-align: center;
            background-color: #fff;
            vertical-align: top;
            border-right: 1px solid #fff
        }

       

        .nb-nodeboard-send-btn {
            height: 35px;
            width: 50%;
            line-height: 35px;
            text-align: center;
            border-radius: 2px;
            font-size: 14px;
            color: #fff;
            cursor: pointer;
            background-color: #edb518;
            margin-top: 8px
        }

        .nb-nodeboard-send-btn:hover {
            background-color: #f49c11
        }

        .nb-dingwei {
            display: none
        }

        .nb-dingwei .container {
            z-index: 9999;
            position: fixed;
            top: 50%;
            left: 50%;
            margin-left: -200px;
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0