Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delaying Hyperlinks [duplicate]

Is it possible to delay a hyperlink by 3 seconds as CSS has the delay animation, I have some icons with animation on them, for a mobile user they cant hover over the icons, but they would be able to see the icon animation if i had a delay on the hyperlinks? Is this possible? Thanks All!


1 Answers

Related post: I want to delay a link for a period of 500 with javascript

In summary:

HTML:

<a href="javascript:delay('URL', 3000)"></a>

Javascript:

function delay (URL, ms) {
    setTimeout( function() { window.location = URL }, ms);
}
like image 174
Will Hamic Avatar answered Jul 13 '26 16:07

Will Hamic



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!