react实现一个右上角消息提示弹出层效果代码
代码语言:html
所属分类:弹出层
代码描述:react实现一个右上角消息提示弹出层效果代码,包含成功、错误、消息、警告4种类型。
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> body { height: 100vh; margin: 0; display: grid; place-items: center; } .root { position: relative; } .toast-container { position: absolute; top: 0; right: 10px; } @-webkit-keyframes moveDown { from { transform: translateY(-20px); } to { transform: translateY(20px); } } @keyframes moveDown { from { transform: translateY(-20px); } to { transform: translateY(20px); } } .toast { width: 300px; padding: 16px; border-radius: 8px; margin-bottom: 16px; color: white; display: flex; align-items: center; justify-content: space-betwee.........完整代码请登录后点击上方下载按钮下载查看
网友评论0