Inspired by Google Toast Message.
<script src="https://cdn.jsdelivr.net/gh/tobiasroeder/[email protected]/js/toastmsg.min.js"></script>
toastMsg({
color: 'white',
bgColor: '#444',
fontSize: '22px',
fontFamily: 'monospace',
value: 'Hello World',
position: 'right',
duration: 2000
});
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