-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
39 lines (31 loc) · 993 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Venom Button Demo</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="venom-button.min.css">
<script type="text/javascript" src="venom-button.min.js"></script>
</head>
<body>
<div id="myButton"></div>
</div>
</body>
<script type="text/javascript">
$('#myButton').venomButton({
phone: '5521990000000',
message: "I'd like to order a pizza",
chatMessage: 'Hi there 👋<br><br>How can I help you?',
showPopup: true,
headerColor: '#033E8C',
buttonColor: '#033E8C',
avatar: './assets/avatar.jpg',
position: "right",
linkButton: false,
showOnIE: false,
nameClient: "Joe Dutra",
headerTitle: 'Commercial Sales',
});
</script>
</html>