内射老阿姨1区2区3区4区_久久精品人人做人人爽电影蜜月_久久国产精品亚洲77777_99精品又大又爽又粗少妇毛片

HTML5如何實(shí)現(xiàn)仿手機(jī)微信聊天界面

這篇文章主要介紹了HTML5如何實(shí)現(xiàn)仿手機(jī)微信聊天界面,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)主營(yíng)豐南網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,成都APP應(yīng)用開(kāi)發(fā),豐南h5微信小程序定制開(kāi)發(fā)搭建,豐南網(wǎng)站營(yíng)銷推廣歡迎豐南等地區(qū)企業(yè)咨詢

給大家?guī)?lái)的是HTML5仿手機(jī)微信聊天界面,截圖效果如下:

HTML5如何實(shí)現(xiàn)仿手機(jī)微信聊天界面

源代碼如下:

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <!DOCTYPE html>  
    <html>  
    <head>  
        <meta charset="UTF-8">  
        <title>HTML5模擬微信聊天界面</title>  
        <style>  
      /**重置標(biāo)簽?zāi)J(rèn)樣式*/   
            * {   
                margin: 0;   
                padding: 0;   
                list-style: none;   
                font-family: '微軟雅黑'   
            }   
            #container {   
                width: 450px;   
                height: 780px;   
                background: #eee;   
                margin: 80px auto 0;   
                position: relative;   
                box-shadow: 20px 20px 55px #777;   
            }   
            .header {   
                background: #000;   
                height: 40px;   
                color: #fff;   
                line-height: 34px;   
                font-size: 20px;   
                padding: 0 10px;   
            }   
            .footer {   
                width: 430px;   
                height: 50px;   
                background: #666;   
                position: absolute;   
                bottom: 0;   
                padding: 10px;   
            }   
            .footer input {   
                width: 275px;   
                height: 45px;   
                outline: none;   
                font-size: 20px;   
                text-indent: 10px;   
                position: absolute;   
                border-radius: 6px;   
                right: 80px;   
            }   
            .footer span {   
                display: inline-block;   
                width: 62px;   
                height: 48px;   
                background: #ccc;   
                font-weight: 900;   
                line-height: 45px;   
                cursor: pointer;   
                text-align: center;   
                position: absolute;   
                right: 10px;   
                border-radius: 6px;   
            }   
            .footer span:hover {   
                color: #fff;   
                background: #999;   
            }   
            #user_face_icon {   
                display: inline-block;   
                background: red;   
                width: 60px;   
                height: 60px;   
                border-radius: 30px;   
                position: absolute;   
                bottom: 6px;   
                left: 14px;   
                cursor: pointer;   
                overflow: hidden;   
            }   
            img {   
                width: 60px;   
                height: 60px;   
            }   
            .content {   
                font-size: 20px;   
                width: 435px;   
                height: 662px;   
                overflow: auto;   
                padding: 5px;   
            }   
            .content li {   
                margin-top: 10px;   
                padding-left: 10px;   
                width: 412px;   
                display: block;   
                clear: both;   
                overflow: hidden;   
            }   
            .content li img {   
                float: left;   
            }   
            .content li span{   
                background: #7cfc00;   
                padding: 10px;   
                border-radius: 10px;   
                float: left;   
                margin: 6px 10px 0 10px;   
                max-width: 310px;   
                border: 1px solid #ccc;   
                box-shadow: 0 0 3px #ccc;   
            }   
            .content li img.imgleft {    
                float: left;    
            }   
            .content li img.imgright {    
                float: right;    
            }   
            .content li span.spanleft {    
                float: left;   
                background: #fff;   
            }   
            .content li span.spanright {    
                float: right;   
                background: #7cfc00;   
            }   
        </style>  
        <script>  
            window.onload = function(){   
                var arrIcon = ['http://www.xttblog.com/icons/favicon.ico','http://www.xttblog.com/wp-content/uploads/2016/03/123.png'];   
                var num = 0;     //控制頭像改變   
                var iNow = -1;    //用來(lái)累加改變左右浮動(dòng)   
                var icon = document.getElementById('user_face_icon').getElementsByTagName('img');   
                var btn = document.getElementById('btn');   
                var text = document.getElementById('text');   
                var content = document.getElementsByTagName('ul')[0];   
                var img = content.getElementsByTagName('img');   
                var span = content.getElementsByTagName('span');   
      
                icon[0].onclick = function(){   
                    if(num==0){   
                        this.src = arrIcon[1];   
                        num = 1;   
                    }else if(num==1){   
                        this.src = arrIcon[0];   
                        num = 0;   
                    }                   
                }   
                btn.onclick = function(){   
                    if(text.value ==''){   
                        alert('不能發(fā)送空消息');   
                    }else {   
                        content.innerHTML += '<li><img src="'+arrIcon[num]+'"><span>'+text.value+'</span></li>';   
                        iNow++;   
                        if(num==0){   
                            img[iNow].className += 'imgright';   
                            span[iNow].className += 'spanright';   
                        }else {   
                            img[iNow].className += 'imgleft';   
                            span[iNow].className += 'spanleft';   
                        }   
                        text.value = '';   
         // 內(nèi)容過(guò)多時(shí),將滾動(dòng)條放置到最底端   
         contentcontent.scrollTop=content.scrollHeight;     
                    }   
                }   
            }   
        </script>  
    </head>  
    <body>  
        <p id="container">  
            <p class="header">  
                <span style="float: left;">業(yè)余草:模擬微信聊天界面</span>  
                <span style="float: right;">14:21</span>  
            </p>  
            <ul class="content">  
       <!-- 歡迎加入qq群:454796847、135430763 -->  
      </ul>  
            <p class="footer">  
                <p id="user_face_icon">  
                    <img src="http://www.xttblog.com/icons/favicon.ico" alt="">  
                </p>  
                <input id="text" type="text" placeholder="說(shuō)點(diǎn)什么吧...">  
                <span id="btn">發(fā)送</span>  
            </p>  
        </p>  
    </body>  
    </html>

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“HTML5如何實(shí)現(xiàn)仿手機(jī)微信聊天界面”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!

本文題目:HTML5如何實(shí)現(xiàn)仿手機(jī)微信聊天界面
網(wǎng)頁(yè)URL:http://www.rwnh.cn/article42/jgpgec.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供動(dòng)態(tài)網(wǎng)站、商城網(wǎng)站、品牌網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、網(wǎng)站導(dǎo)航、定制開(kāi)發(fā)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

商城網(wǎng)站建設(shè)
兰州市| 前郭尔| 土默特左旗| 石棉县| 湄潭县| 五常市| 宁安市| 肥乡县| 纳雍县| 循化| 额尔古纳市| 北碚区| 巴中市| 友谊县| 岳池县| 嘉黎县| 利辛县| 中山市| 金阳县| 扬中市| 南和县| 临沂市| 锦屏县| 德江县| 徐汇区| 泊头市| 东港市| 黄浦区| 高唐县| 西华县| 喀喇| 苗栗市| 商水县| 沙洋县| 石城县| 新巴尔虎左旗| 兴化市| 团风县| 岢岚县| 琼海市| 北辰区|