Category Archives: Uncategorized

back-to-top

$(document).ready(function(){ $(“#back-to-top”).hide(); $(function () { $(window).scroll(function(){ if ($(window).scrollTop()>100){ $(“#back-to-top”).fadeIn(1500); } else { $(“#back-to-top”).fadeOut(1500); } }); //back to top $(“#back-to-top”).click(function(){ $(‘body,html’).animate({scrollTop:0},1000); return false; }); }); });

Posted in Uncategorized | Leave a comment

Dropdown-menu

<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”utf-8″> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> <meta name=”viewport” content=”width=device-width, initial-scale=1″> <meta name=”description” content=””> <meta name=”author” content=””> <title>training</title> <style type=”text/css”> ul {list-style: none;padding: 0px;margin: 0px;} ul li {display: block;position: relative;float: left;border:1px solid #000} li ul {display: none;} … Continue reading

Posted in Uncategorized | Leave a comment