2
Guys, I have a VSL page with a button that directs to a Whatsapp, however, I wanted to make this button invisible for 10 minutes, before appearing, because I pass a video before. How can I do that?
This is actually my button:
button.whats {
cursor: pointer;
border-top-left-radius: 0px;
border-top-right-radius: 25px;
border-bottom-left-radius: 25px;
border-bottom-right-radius: 0px;
border: solid;
border-color: #34af23;
background-color: #34af23;
color: #FFFFFF;
align-content: center;
width: 250px;
height: 70px;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
font face: Helvetica;
font-size: 15px;
position: relative;
bottom: 50px;
to better understand. You want the user to access the page, in the first instance such button is hidden and the video is displayed and after 10 minutes (that is the video playback time), you want the video to hide and display such button?
– user148754
The subject is tripled! Here is an example: https://www.w3schools.com/jsref/met_win_settimeout.asp -- Related topic: https://answall.com/q/91709/60601
– Francis Rodrigues