UNPKG

@anywhichway/lazui

Version:

Single page apps and lazy loading sites with minimal JavaScript or client build processes.

367 lines (333 loc) 11.7 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Together</title> <!--script src="//code.jivosite.com/widget/e5a0UewCBT" async></script> <script> function jivo_onLoadCallback() { console.log('Widget fully loaded'); jivo_api.clearHistory(); const apiResult = jivo_api.open(); if(apiResult.result==="ok") { setTimeout(() => { jivo_api.setCustomData([ { "datetime": "2021-01-01T00:00:00.000Z", "summary": "Name: Simon, ..." }, { "content": "Open customer profile", }, { "title": "Actions", "content": "Add contact", } ]); const userInput = document.querySelector("textarea"); userInput.addEventListener("keyup",(event) => { if(event.key==="Enter") { console.log(event) } }); },2000); } } </script--> <style> :root { --body-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); --msger-bg: #fff; --border: 2px solid #ddd; --left-msg-bg: #ececec; --right-msg-bg: #579ffb; } html { box-sizing: border-box; } *, *:before, *:after { margin: 0; padding: 0; box-sizing: inherit; } body { display: flex; justify-content: center; align-items: center; height: 100vh; background-image: var(--body-bg); font-family: Helvetica, sans-serif; } .msger { display: flex; flex-flow: column wrap; justify-content: space-between; width: 100%; max-width: 867px; margin: 25px 10px; height: calc(100% - 50px); border: var(--border); border-radius: 5px; background: var(--msger-bg); box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2); } .msger-header { display: flex; justify-content: space-between; padding: 10px; border-bottom: var(--border); background: #eee; color: #666; } .msger-chat { flex: 1; overflow-y: auto; padding: 10px; } .msger-chat::-webkit-scrollbar { width: 6px; } .msger-chat::-webkit-scrollbar-track { background: #ddd; } .msger-chat::-webkit-scrollbar-thumb { background: #bdbdbd; } .msg { display: flex; align-items: flex-end; margin-bottom: 10px; } .msg:last-of-type { margin: 0; } .msg-img { width: 50px; height: 50px; margin-right: 10px; background: #ddd; background-repeat: no-repeat; background-position: center; background-size: cover; border-radius: 50%; } .msg-bubble { max-width: 450px; padding: 15px; border-radius: 15px; background: var(--left-msg-bg); } .msg-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } .msg-info-name { margin-right: 10px; font-weight: bold; } .msg-info-time { font-size: 0.85em; } .left-msg .msg-bubble { border-bottom-left-radius: 0; } .right-msg { flex-direction: row-reverse; } .right-msg .msg-bubble { background: var(--right-msg-bg); color: #fff; border-bottom-right-radius: 0; } .right-msg .msg-img { margin: 0 0 0 10px; } .msger-inputarea { display: flex; padding: 10px; border-top: var(--border); background: #eee; } .msger-inputarea * { padding: 10px; border: none; border-radius: 3px; font-size: 1em; } .msger-input { flex: 1; background: #ddd; } .msger-send-btn { margin-left: 10px; background: rgb(0, 196, 65); color: #fff; font-weight: bold; cursor: pointer; transition: background 0.23s; } .msger-send-btn:hover { background: rgb(0, 180, 50); } .msger-chat { background-color: #fcfcfe; } </style> </head> <section class="msger"> <header class="msger-header"> <div class="msger-header-title"> <i class="fas fa-comment-alt"></i> SimpleChat </div> <div class="msger-header-options"> <span><i class="fas fa-cog"></i></span> </div> </header> <main class="msger-chat"> <div class="msg left-msg"> <div class="msg-img" _style="background-image: url(https://image.flaticon.com/icons/svg/327/327779.svg)" ></div> <div class="msg-bubble"> <div class="msg-info"> <div class="msg-info-name">BOT</div> <div class="msg-info-time">12:45</div> </div> <div class="msg-text"> Hi, welcome to SimpleChat! Go ahead and send me a message. 😄 </div> </div> </div> <div class="msg right-msg"> <div class="msg-img" _style="background-image: url(https://image.flaticon.com/icons/svg/145/145867.svg)" ></div> <div class="msg-bubble"> <div class="msg-info"> <div class="msg-info-name">Sajad</div> <div class="msg-info-time">12:46</div> </div> <div class="msg-text"> You can change your name in JS section! </div> </div> </div> </main> <form class="msger-inputarea"> <input type="text" class="msger-input" placeholder="Enter your message..."> <button type="submit" class="msger-send-btn">Send</button> </form> </section> <script> function getVoices() { return new Promise( function (resolve, reject) { let synth = window.speechSynthesis; let id; id = setInterval(() => { if (synth.getVoices().length !== 0) { resolve(synth.getVoices()); clearInterval(id); } }, 10); } ) } let voice, hasSpoken; document.addEventListener("DOMContentLoaded",async () => { const synth = window.speechSynthesis; voice = (await getVoices()).find((voice) => voice.name==="Google UK English Female"); const msgerForm = get(".msger-inputarea"); const msgerInput = get(".msger-input"); const msgerChat = get(".msger-chat"); const BOT_MSGS = [ "Hi, how are you?", "Ohh... I can't understand what you trying to say. Sorry!", "I like to play games... But I don't know how to play!", "Sorry if my answers are not relevant. :))", "I feel sleepy! :(" ]; // Icons made by Freepik from www.flaticon.com const BOT_IMG = "https://image.flaticon.com/icons/svg/327/327779.svg"; const PERSON_IMG = "https://image.flaticon.com/icons/svg/145/145867.svg"; const BOT_NAME = "BOT"; const PERSON_NAME = "Sajad"; const speak = (text) => { if (synth.speaking) { console.error("speechSynthesis.speaking"); return; } if(text!=="") { const utterThis = new SpeechSynthesisUtterance(text); utterThis.onend = (event) => { console.log("SpeechSynthesisUtterance.onend"); }; utterThis.onerror = (event) => { console.error("SpeechSynthesisUtterance.onerror"); }; utterThis.voice = voice; utterThis.pitch = 1; utterThis.rate = 1; synth.speak(utterThis); } } msgerForm.addEventListener("submit", event => { event.preventDefault(); const msgText = msgerInput.value; if (!msgText) return; appendMessage(PERSON_NAME, PERSON_IMG, "right", msgText); msgerInput.value = ""; botResponse(); }); function appendMessage(name, img, side, text) { // Simple solution for small apps const msgHTML = ` <div class="msg ${side}-msg"> <div class="msg-img" style="background-image: url(${img})"></div> <div class="msg-bubble"> <div class="msg-info"> <div class="msg-info-name">${name}</div> <div class="msg-info-time">${formatDate(new Date())}</div> </div> <div class="msg-text">${text}</div> </div> </div> `; msgerChat.insertAdjacentHTML("beforeend", msgHTML); msgerChat.scrollTop += 500; } function botResponse() { const r = random(0, BOT_MSGS.length - 1); const msgText = BOT_MSGS[r]; const delay = msgText.split(" ").length * 100; setTimeout(() => { speak((hasSpoken ? "\n" : "\nAh," ) + msgText); hasSpoken = true; appendMessage(BOT_NAME, BOT_IMG, "left", msgText); }, delay); } // Utils function get(selector, root = document) { return root.querySelector(selector); } function formatDate(date) { const h = "0" + date.getHours(); const m = "0" + date.getMinutes(); return `${h.slice(-2)}:${m.slice(-2)}`; } function random(min, max) { return Math.floor(Math.random() * (max - min) + min); } }); </script> <!-- DEMO --> <a href="http://www.adobewordpress.com/iphone-mesajlar-ekrani" target="_blank" class="article" style="display:none">Read Article</a> </body> </html>