“GrowlNotification”的版本间的差异
来自Purtmars Wikipedia —— 普特莫斯维基
(建立内容为“<html> <link rel="stylesheet" href="https://wiki.ptms.ink/images/6/67/Bootstrap.4.3.1.min.css"> <link rel="stylesheet" href="https://wiki.ptms.ink/images/…”的新页面) |
|||
第15行: | 第15行: | ||
</html> | </html> | ||
<syntaxhighlight lang="html" line="line"> | <syntaxhighlight lang="html" line="line"> | ||
+ | <html> | ||
<script> | <script> | ||
GrowlNotification.notify({ | GrowlNotification.notify({ | ||
第25行: | 第26行: | ||
}); | }); | ||
</script> | </script> | ||
+ | </html> | ||
</syntaxhighlight> | </syntaxhighlight> |
2021年4月12日 (一) 23:50的版本
1 <html>
2 <script>
3 GrowlNotification.notify({
4 title: 'Well Done!',
5 description: 'You just submit your resume successfully.',
6 type: 'success',
7 position: 'top-right',
8 closeTimeout: 5000,
9 showProgress: true
10 });
11 </script>
12 </html>