vue聊天自动回复窗口效果代码
代码语言:html
所属分类:其他
代码描述:vue聊天自动回复窗口效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> @import 'https://fonts.googleapis.com/css?family=Roboto+Condensed:300'; * { box-sizing: border-box; } body { display: flex; justify-content: center; background-color: #d573ee; font-family: "Roboto Condensed", sans-serif; font-size: 16px; line-height: 1.875em; } .container { flex: 1 0 auto; margin-top: 50px; margin-bottom: 50px; max-width: 500px; box-shadow: 10px 10px 0 #c746e8; background-color: #fff; } .small { font-size: 0.75em; line-height: 1.5em; } .disabled { color: #c4c4c4; } .chat-wrapper { display: flex; flex-direction: column; padding: 30px; height: 400px; overflow-y: auto; } .bubble { position: relative; width: auto; max-width: 350px; margin-bottom: 20px; padding: 20px 40px; border-radius: 25px; box-shadow: 5px 5px 0 #c746e8; font-weight: 300; transform: scale(0); -webkit-animation-name: scaleAll; animation-name: scaleAll; -webkit-animation-duration: 0.35s; anima.........完整代码请登录后点击上方下载按钮下载查看
网友评论0