Code Examples
user prompts
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <!--
This is the basic cameratag embed.
-->
<html>
<head>
<script src='//www.cameratag.com/v16/js/cameratag.min.js' type='text/javascript'></script>
<link rel='stylesheet' href='//www.cameratag.com/v16/css/cameratag.css'></link>
</head>
<body>
<camera
id='DemoCamera'
data-app-id='63f9c870-72c4-0130-04c5-123139045d73'
data-prompts='[
{"text": "What is your name?", "minLength": 5, "maxLength": 10},
{"text": "Where are you from?", "minLength": 5, "maxLength": 10}
]'
>
</camera>
</body>
</html>
|