Skip to content

kolya-movchan/js_notification_DOM

 
 

Repository files navigation

  1. Replace <your_account> with your Github username in the link
  2. Follow this instructions
    • Run npm run test command to test your code;
    • Run npm run test:only -- -n to run fast test ignoring linter;
    • Run npm run test:only -- -l to run fast test with additional info in console ignoring linter.

Task: Create a notification

To inform the user about the success of the operation, or any errors, websites usually use messages that appear for a while on the screen.

Your task: Create function pushNotification, which takes coordinates of the message, title, description, and type (success, error and warning). pushNotification creates an element to display the message, appends it to the document, and removes it from the DOM after 2 seconds. Do not write any CSS styles or HTML code in this task. You should modify only main.js file.

Implementation tips:

  • Print three messages: success, error, warning (call methods already exist in main.js file);
  • The message is block element with class notification + class which depends on the input parameter type (success, error, warning);
  • The message should have a title with class title (prefer h2 element);
  • The message should have description (prefer tag p).

Hint: use setTimeout for execute a function or specified piece of code once the timer expires.

It's an expected result of your job: Result

About

JS Advanced task. Create notification.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 58.0%
  • SCSS 30.9%
  • HTML 11.1%