简体   繁体   中英

Sliding dropdown alert, how can I achieve this?

Could somebody please give me a few pointers on how to add a sliding dropdown area onto my home page similar to the following website: http://laptop-repair-manchester.co.uk . ( Warning, trips for malware )

The thing I would like to imitate is the dropdown area that reads "call for a free quotation", it displays after about 5 seconds of the page loading.

If possible I would also like to add an image to the drop down slide effect.

Thanks in advance.

This can be quite straight-forward since jQuery has a .slideDown function: http://jsfiddle.net/QWqj5/ .

setTimeout(function() {
    $("#alert").slideDown(2000); // slide duration of 2 seconds
}, 5000); // execute after 5 seconds

为此,您可以在页面顶部创建一个div,其中包含所需的所有信息,然后在此div上应用JQuery的下滑功能

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM