I'm sure you've encountered video lead magnets before. An interesting video is offered tastily, so that apparently the video starts with a click. After that, however, the form for requesting contact data is displayed first. Only then does the video start or continue.
Other systems already offer ready-made templates here. However, this does not exist in such a form in the world of Zoho CRM and Zoho Forms. But that does not matter. With a little HTML code, which we use at CEYOND, you can easily implement this yourself, as you can see in this
example.
The trick is that two contents are displayed on the page: first a preview image of the video:
Video Lead Magnet - Screen 1 By clicking the mouse, the second and initially invisible content, the registration form, is displayed and the video preview image is hidden:
Video Lead Magnet - Screen 2
The form (Zoho Forms) then simply redirects to the actual video after it has been entered:
Video Lead Magnet - Screen 3 Our HTML code for that use case:
- <div id="ceyond_video_preview">
- <a href="#" onclick="ceyond_video_click();">
- <img width="800" height="465" src="video_preview_image.jpg 768w" />
- </a>
- </div>
- <div id="ceyond_video_forms" style="display:none;">
- *** Your Zoho Forms Code here ***
- </div>
- <script type="text/javascript">
- <!--
- function ceyond_video_click() {
- var p = document.getElementById('ceyond_video_preview');
- var f = document.getElementById('ceyond_video_forms');
- p.style.display = 'none';
- f.style.display = 'block';
- }
- //-->
- </script>
You can see a full demo
here.