91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

HTML5如何實現仿手機微信聊天界面

發布時間:2021-02-19 14:47:05 來源:億速云 閱讀:732 作者:小新 欄目:web開發

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

給大家帶來的是HTML5仿手機微信聊天界面,截圖效果如下:

HTML5如何實現仿手機微信聊天界面

源代碼如下:

XML/HTML Code復制內容到剪貼板

  1. <!DOCTYPE html>  
    <html>  
    <head>  
        <meta charset="UTF-8">  
        <title>HTML5模擬微信聊天界面</title>  
        <style>  
      /**重置標簽默認樣式*/   
            * {   
                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;    //用來累加改變左右浮動   
                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('不能發送空消息');   
                    }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 = '';   
         // 內容過多時,將滾動條放置到最底端   
         contentcontent.scrollTop=content.scrollHeight;     
                    }   
                }   
            }   
        </script>  
    </head>  
    <body>  
        <p id="container">  
            <p class="header">  
                <span style="float: left;">業余草:模擬微信聊天界面</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="說點什么吧...">  
                <span id="btn">發送</span>  
            </p>  
        </p>  
    </body>  
    </html>

感謝你能夠認真閱讀完這篇文章,希望小編分享的“HTML5如何實現仿手機微信聊天界面”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

滁州市| 易门县| 泰来县| 阿拉善左旗| 余庆县| 隆德县| 班戈县| 邛崃市| 邹城市| 松潘县| 平阳县| 凤山市| 霞浦县| 年辖:市辖区| 雅江县| 偏关县| 广河县| 桓台县| 德昌县| 莫力| 河曲县| 杭锦旗| 舞钢市| 大关县| 西畴县| 宣恩县| 北票市| 湖州市| 搜索| 城步| 普宁市| 涟源市| 错那县| 芦溪县| 淳安县| 安图县| 页游| 丰台区| 青州市| 海阳市| 承德县|