-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (58 loc) · 1.84 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Example</title>
</head>
<body>
<button id="btn">
Hi, <b>Consolee</b>
</button>
View in Console browser
</body>
<script src="dist/consolee.js"></script>
<script>
consolee.log({
el: document.getElementById('btn'),
link: 'https://github.com/lusaxweb/Consolee',
text: `• Warn info: El formato de la propiedad color es incorrecto
• Prop: color
• value: Example
• Valores Permitidos: (RGB, HEX, RGB Numbers, Vuesax Colors)
• Example: color="#000" or color="rgb(255,255,255)"`,
title: 'CONSOLEE'
})
consolee.warn({
el: document.getElementById('btn'),
link: 'https://github.com/lusaxweb/Consolee',
text: `• Warn info: El formato de la propiedad color es incorrecto
• Prop: color
• value: Example
• Valores Permitidos: (RGB, HEX, RGB Numbers, Vuesax Colors)
• Example: color="#000" or color="rgb(255,255,255)"`,
title: 'CONSOLEE'
})
consolee.error({
el: document.getElementById('btn'),
link: 'https://github.com/lusaxweb/Consolee',
text: `• Warn info: El formato de la propiedad color es incorrecto
• Prop: color
• value: Example
• Valores Permitidos: (RGB, HEX, RGB Numbers, Vuesax Colors)
• Example: color="#000" or color="rgb(255,255,255)"`,
title: 'CONSOLEE'
})
consolee.success({
el: document.getElementById('btn'),
link: 'https://github.com/lusaxweb/Consolee',
text: `• Warn info: El formato de la propiedad color es incorrecto
• Prop: color
• value: Example
• Valores Permitidos: (RGB, HEX, RGB Numbers, Vuesax Colors)
• Example: color="#000" or color="rgb(255,255,255)"`,
title: 'CONSOLEE'
})
</script>
</html>