返回课程

创建通知

重要性:5

编写一个函数 showNotification(options),它创建一个通知:<div class="notification">,包含给定的内容。通知应该在 1.5 秒后自动消失。

选项是

// shows an element with the text "Hello" near the right-top of the window
showNotification({
  top: 10, // 10px from the top of the window (by default 0px)
  right: 10, // 10px from the right edge of the window (by default 0px)
  html: "Hello!", // the HTML of notification
  className: "welcome" // an additional class for the div (optional)
});

在新窗口中演示

使用 CSS 定位将元素显示在给定的顶部/右侧坐标处。源文档包含必要的样式。

打开一个沙箱来完成任务。