Display Delayed Content with Visual Composer
-
Hi! I have a page with a video and content under it.
I need to show only the video, the content will be displayed a few seconds later.Anyway, whatever method I try it always becomes a mess on my Visual Composer (v. 4.12.1) rows.
The techniques I’m using to try to hide the rows are:
>>> 1. PLUGIN CALLED TIMED CONTENT
[timed-content-client show=”0:10″]
>>>> 2. THIS CODE:
<div id=”delayedcta”><input type=”hidden” id=”timedelay” value=”.25″>WITH THIS SCRIPT
<script type=”text/javascript”>delay = ( document.getElementById(“timedelay”).value * 60 ) * 1000;
setTimeout(function(){showdiv()}, delay);
function showdiv() {
document.getElementById(“delayedcta”).style.display = “block”;
}</script>
- The topic ‘Display Delayed Content with Visual Composer’ is closed to new replies.