Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

tobiasroeder/ToastMsg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ToastMsg Documentation

Inspired by Google Toast Message.

Include this file

<script src="https://cdn.jsdelivr.net/gh/tobiasroeder/[email protected]/js/toastmsg.min.js"></script>

Syntax (Example)

toastMsg({
	color: 'white',
	bgColor: '#444',
	fontSize: '22px',
	fontFamily: 'monospace',
	value: 'Hello World',
	position: 'right',
	duration: 2000
});

Parameter

Parameter Type Default
color string #fff
bgColor string #242424
fontSize string 16px
fontFamily string 'Helvetica Neue', 'Helvetica', sans-serif
position string left
duration number 3000

Example here: https://tobiasroeder.github.io/toastmsg
Try it yourself