is this is develop in HTML 5 ? http://themeforest.net/item/dreamer...parallax-template/full_screen_preview/3880376 when i click any menu it coming via scrolling effect can anyone help me how can i do this?
Dear Dhaval, Yes, they have developed in HTML/5/CSS3/Jquary. For that kind of effect development find experience jquary developer to help you to build it. Thanks,
My question would be why would you WANT TO?!? That buggy slow inaccessible pile of trash is a laundry list of how NOT to build a website. I pity anyone DUMB ENOUGH to deploy that type of nonsense on a website.
Yes, This site is built using HTML5, CSS3 and some Jquery. There are already some plug in written in Jquery to get this animation effect in same page link. TO know more about same page link visit here http://www.w3schools.com/html/tryit.asp?filename=tryhtml_link_locations Then Scrollto is one among the plug in to get this animation effect. You don't have to write much code to get this effect. you just need to download the scrollto plugin from the link bellow and upload them into your server and then link them in head of your website. Specify all the points to which you want to scroll in the page by studying how same page link are created from W3schools website. Visit this link get some idea, how this can be done http://flesler.blogspot.in/2007/10/jqueryscrollto.html Download the plug ins from the upper link. And after that paste this code in the head of your website. <script> $(document).ready(function() { function filterPath(string) { return string .replace(/^\//,'') .replace(/(index|default).[a-zA-Z]{3,4}$/,'') .replace(/\/$/,''); } var locationPath = filterPath(location.pathname); var scrollElem = scrollableElement('html', 'body'); $('a[href*=#]').each(function() { var thisPath = filterPath(this.pathname) || locationPath; if ( locationPath == thisPath && (location.hostname == this.hostname || !this.hostname) && this.hash.replace(/#/,'') ) { var $target = $(this.hash), target = this.hash; if (target) { var targetOffset = $target.offset().top; $(this).click(function(event) { event.preventDefault(); $(scrollElem).animate({scrollTop: targetOffset}, 1500, 'swing', function() { location.hash = target; }); }); } } }); // use the first element that is "scrollable" function scrollableElement(els) { for (var i = 0, argLength = arguments.length; i <argLength; i++) { var el = arguments, $scrollElement = $(el); if ($scrollElement.scrollTop()> 0) { return el; } else { $scrollElement.scrollTop(1); var isScrollable = $scrollElement.scrollTop()> 0; $scrollElement.scrollTop(0); if (isScrollable) { return el; } } } return []; } }); $(document).ready(function() { $("#homepage_style").addClass("animi_home"); }); </script> ================================================= If you need any other help feel free to ask. Thanks. Manat Kanher.