Advertisement
artemx32

asdf

Mar 25th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.86 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <meta charset="utf-8">
  4.     <body>
  5.         <input type="text" id="chat_input" placeholder="Your message..."></input>
  6.         <input type="text" id="nick" placeholder="Enter your nick"></input>
  7.         <span id="msg_holder"></span>
  8.         <style>
  9.  
  10.             div {
  11.  
  12.                 background: #004040;
  13.                 font-family: "Enigmatic Unicode";
  14.                 font-size: 15px;
  15.                 color: #fff;
  16.                 padding: 10px;
  17.                 border-radius: 10px;
  18.                 width: auto;
  19.                 height: 10px;
  20.                 margin: 3px;
  21.  
  22.             }
  23.  
  24.             input {
  25.  
  26.                 background: #103535;
  27.                 color: #FFFFFF;
  28.                 padding: 5px;
  29.                 width: 350px;
  30.                 height: 18px;
  31.                 border-radius: 10px;
  32.                 transition: 250ms;
  33.  
  34.             }
  35.             input:hover {
  36.  
  37.                 color: #AA8080;
  38.                 background: #009999;
  39.  
  40.             }
  41.  
  42.             p {
  43.  
  44.                 font-family: Arial;
  45.                 font-color: #000000;
  46.                 transition: 1s;
  47.                 font-size: 18px;
  48.                 display: inline-block;
  49.  
  50.             }
  51.  
  52.             a {
  53.                
  54.                 font-family: Tahoma;
  55.                 font-color: #000025;
  56.                 transition: 1s;
  57.                 font-size: 12px;
  58.                 display: inline;
  59.                 margin-right: 20px;
  60.  
  61.             }
  62.  
  63.         </style>
  64.         <script>
  65.             document.getElementById("chat_input").addEventListener("keypress", function( e ) {
  66.  
  67.             var key = e.which || e.keyCode;
  68.  
  69.             if ( key == 13 && this.value.length > 0 && this.value != ' ' && this.value != '' ) {
  70.                
  71.                 place_message( this )
  72.  
  73.             }
  74.  
  75.             })
  76.  
  77.             function place_message( v ) {
  78.                
  79.               var MSG_FRAME = document.createElement('div')
  80.               var holder = document.createElement('span')
  81.               var nick = document.createElement('p')
  82.               var txt = document.createElement('a')
  83.              
  84.               txt.innerHTML = v.value
  85.                v.value = ''
  86.  
  87.               nick.innerHTML = document.getElementById("nick").value + ": "
  88.              
  89.               MSG_FRAME.appendChild(holder)
  90.               holder.appendChild(nick)
  91.               holder.appendChild(txt)
  92.               document.getElementById("msg_holder").appendChild(MSG_FRAME)
  93.              
  94.             }
  95.         </script>
  96.     </body>
  97. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement