-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathindex.html
37 lines (33 loc) · 967 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Floating WhatsApp Button Demo</title>
<script type="text/javascript" src="jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="floating-wpp.css">
<script type="text/javascript" src="floating-wpp.js"></script>
<style>
body {
font-family: Arial, Helvetica, sans-serif
}
</style>
</head>
<body>
<div id="myButton"></div>
</body>
<script type="text/javascript">
$(function () {
$('#myButton').floatingWhatsApp({
phone: '5491133359850',
popupMessage: 'Hello, how can we help you?',
message: "I'd like to order a pizza",
showPopup: true,
showOnIE: false,
headerTitle: 'Welcome!',
headerColor: 'crimson',
backgroundColor: 'crimson',
buttonImage: '<img src="burger.svg" />'
});
});
</script>
</html>