HTML5仿手机微信聊天界面

2019-01-28 22:14:12刘景俊

给大家带来的是HTML5仿手机微信聊天界面,截图效果如下:

源代码如下:

XML/HTML Code复制内容到剪贴板
  1. <!DOCTYPE html>   <html>  
  2. <head>       <meta charset="UTF-8">  
  3.     <title>HTML5模拟微信聊天界面</title>       <style>  
  4.   /**重置标签默认样式*/            * {   
  5.             margin: 0;                padding: 0;   
  6.             list-style: none;                font-family: '微软雅黑'   
  7.         }            #container {   
  8.             width: 450px;                height: 780px;   
  9.             background: #eee;                margin: 80px auto 0;   
  10.             position: relative;                box-shadow: 20px 20px 55px #777;   
  11.         }            .header {   
  12.             background: #000;                height: 40px;   
  13.             color: #fff;                line-height: 34px;   
  14.             font-size: 20px;                padding: 0 10px;