纯css实现聊天机器人动画效果
代码语言:html
所属分类:布局界面
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> * { margin: 0 auto; -webkit-user-select: none; } body { width: 100vw; height: 100vh; overflow: hidden; background-color: #F6F6F6; } .container { margin: auto; position: absolute; bottom: 0; left: 0; top: 0; right: 0; height: 500px; width: 500px; animation: up-down 7.5s infinite ease-in-out; } .container #chatbot { margin: auto; position: absolute; bottom: 0; left: 0; top: 0; right: 0; width: 150px; height: 85px; border: 12px solid #3D3E45; border-radius: 5rem; } .container #chatbot-corner { margin: auto; position: absolute; bottom: 0; left: 0; top: 0; right: 0; top: 105px; left: -65px; width: 0; height: 0; border-left: 20px solid transparent; border-right: 20px solid transparent; border-top: 25px solid #3D3E45; transform: rotate(140deg); } .container #antenna { margin: auto; position: absolute; bottom: 0; left: 0; top: 0; right: 0; top: -125px; height: 20px; width: 10px; background-color: #3D3E45; animation: antenna-appear 7.5s infinite ease-in-out; } .container #antenna #beam { position: absolute; top: -12.5px; left: -5px; height: 20px; width: 20px; border-radius: 50%; background-color: #3D3E45; animation: beam-appear 7.5s infinite ease-in-out; } .container #antenna #beam-pulsar { position: absolute; top: -12.5px; left: -5px; height: 20px; width: 20px; border-radius: 50%; background-color: #3D3E45; animation: beam-pulsar-appear 7.5s infinite ease-in-out; } .container .dot { height: 17.5px; width: 17.5px; margin: auto; position: absolute; bottom: 0; left: 0; top: 0; right: 0; left: -65px; background-color: #3D3E45; border-radius: 50%; animation: pulse-outer 7.5s infinite ease-in-out; } .container .dot:nth-child(2) { left: 0; animation: pulse-inner 7.5s infinite ease-in-out; animation-delay: 0.2s; } .container .dot:nth-child(3) { left: 65px; animation: pulse-outer 7.5s infinite ease-in-out; animation-delay: 0.4s; } @keyframes pulse-inner { 0% { transform: scale(1); } 7.5% { transform: scale(1.5); } 15% { transform: scale(1); } 22.5% { transform: scale(1.5); } 30% { transform: scale(1); } 37.5% { transform: scale(1.5); } 45% { top: 0; transform: scale(1); height: 17.5px; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; transform: rotate(-370deg); } 50% { top: 22.5px; height: 10px; border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-left-radius: 3rem; border-bottom-right-radius: 3rem; transform: rotate(10deg); } 55% { transform: rotate(-10deg); } 60% { transform: rotate(10deg); } 65% { transform: rotate(-10deg); } 65% { transform: rotate(0deg); } 85% { top: 22.5px; height: 10px; border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-left-radius: 3rem; border-bottom-right-radius: 3rem; transform: rotate(0deg); } 92.5% { top: 22.5px; height: 10px; border-top-left-radius: 50%; border-top-right-r.........完整代码请登录后点击上方下载按钮下载查看
网友评论0