Skip to main content

Posts

Showing posts with the label CSS3

Item Blur Effects Using Css And Jquery

This tutorial is all about advancement of css and jquery combinaion.Blur effects can be easily embedded into webpages. It looks awesome. You just have to embedd your css and jquery file and with Html code you can perform this.Jquery helps in smoothness of the whole operation. Here is a download link you can refer to that link. Css defines the looks of the page and blurness is defined in the jquery part. It depends on user how much blurness is required. Blur class is added into jquery and this single class is behind this superb tutorial. Download From Here Screen Shot: Jquery Code: $(function() { var $container = $('#ib-container'), $articles = $container.children('article'), timeout; $articles.on( 'mouseenter', function( event ) { var $article = $(this); clearTimeout( timeout ); timeout = setTimeout( function() { if( $article.hasClass('active') ) return false; ...

Coming Soon Pages Using Css3

Hey guyz.. lets build a new page which show about your upcoming website. This tutorial is all about coming soon pages. If a website is going to launch then its upcoming page could be like this. Its so attractive and very simple. With simple html code and awesome CSS3 you can build it. Most developers are using this technique while building their project, a simple description with awesome transitions attract users before launch of website. Lets have a look at this tutorial, this will definitely help you. Download From Here Screen Shot: Simple Html : <h1 class="main">Splash & Coming Soon Page Effects with CSS3</h1> <div class="sp-container"> <div class="sp-content"> <div class="sp-wrap sp-left"> <h2> <span class="sp-top">What if you wouldn't get</span> <span class="sp-mid">spam</span> <span class...

Flexible Slide To Top Menu With Jquery

In this tutorial i am gonna tell you about that link through which you can see its description and all stuff containing in it.We almost this kind of Slide menu in college websies or fashion websites. But now this feature is widely used in all websites. Its name is flexible slide to top menu. Looks different and you will amazed after knowing that it contains just css and jquery . It has an awesome response. We are using some CSS transition for rotating arrow position when we click on item. It is flexible, it mean it has fludic design and adjust according to the screen.When you click the view-port is opened and vice-versa. Download the Code   Jquery Code: This code binds the content into its element. var $event = $.event, resizeTimeout; $event.special.smartresize = { setup: function() { $(this).bind( "resize", $event.special.smartresize.handler ); }, teardown: function() { $(this).unbind( "resize", $event.special.smartresize.handler ...

Awesome Page Transitions With Css3

Hi guys. Do you want to create a webpage with awesome transitions then this tutorial will definately help you.In last couple of years developers used javascript for making transitions effects in the webpage.These were good but takes a little time to load the script.This tutorial is all about magic of CSS3. Here all amazing effects are to be displayed with css. With :target element all operation is performed. It is really cool. Lets get started with this stuff.All we need is just simple html code an awesome css and little creativity. Download the Code Html Code: <!-- Home --> <div id="home" class="content"> <h2>Home</h2> <p>----</p> </div> <!-- /Home --> <!-- Portfolio --> <div id="portfolio" class="panel"> <div class="content"> <h2>Amaging Clicks</h2> <p>-----</p> <ul id="works"> ...

3D Hover Effects

Now we are going to show you all new 3D hover effects using css. Its too impressive and this amazing hover effects are inspired from  Google SketchUp Showcase . In this tutorial we had explained the hover effects of css on images. When you take mouse pointer on them they get bended or change their shape. For example: As in facebook you can see likes of each photo by using transformation css you can see their like when hover effect is applying on the image.Sounds tricky, just download and watch the effects. You can use this effect on your website. This tutorial includes magic of css, jquery and little html code. Download Code Jquery: ( function( $ ) { $.fn.hoverfold = function( args ) { this.each( function() { $( this ).children( '.view' ).each( function() { var $item = $( this ), img = $item.children( 'img' ).attr( 'src' ), struct = ' '; struct +=' '; struct +=' '; s...

Unfolding 3D Thumbnails Effect

Lets create something extra in field of css and javascript.What about to unfold the image and see all the images in the normal jquery slider in 3D Thumbnail effects. It sounds really interesting. Lets have a look on it.Its effects are really of exelent quality.Jquery and css take this simple tutorial to a new level. Jquery function is performed when you click the thumbnail button. We just need html code,css, jquery and attractive images and a little bit creativity. Download Html Code: <section class="main"> <div id="th-wrap" class="th-wrap"> <img src="images/1.jpg"/> <div class="th-inner"> <ul> <li><a target="_blank" href="#"><img src="images/thumbs/1.jpg" /></a></li> <li><a target="_blank" href="#"><img src="images/thumbs/2.jpg" /></a></li...

Css Circle Hover Effects

Lets have a look on this special tutorial. This is all about Css tricks. You can create hover effects on any link but these are normal. Lets try something different shape that is Circle. Its the unique shape and css makes it so attractive. Since we use border-radius property in our css designs we can can create this circle shape. This can give you all new attractive web page. Believe me its too awesome just try it once. We can give some special effects as per our imagination. Please note that this tutorial will only work as intended browsers that support responcive css properties. Download  the whole code. We just need some html code a tricky css file and colorfull images to enhance the beauty. Lets get started. Html Code: <section class="main"> <ul class="ch-grid"> <li> <div class="ch-item ch-img-1"> <div class="ch-info"> <h3>Common Questions</h3> ...

Responsive Web Design: Things you need to know (Infographic)

Now a day responsive design is the main backbone of the web-design. You can see it as we don't need to create a website for different platforms such as (mobiles, Tablet PC's, Desktops, Mobile Phones etc.), By using responsive web design we have to write our code just once and That code will work for all different devices. That means no need to be worried about the devices. HTML5, we can say it a revolutionary change in the web technology you can do as many thing with the HTML5 which can be done only with Jquery and CSS3. so HTML5 helps you to make your template lighter and with the help of HTML5 and CSS3 we can make our template platform independent or device independent. you can learn about responsive Web Design by the following infographic   Hope You like it....

How to create a dropdown menu using CSS3 and HTML5

In this tutorial i am gonna teach you how to create a dropdown navigation menu using css3 and HTML5. Yes, with the help of the advanced selectors of HTML5 we can create a simple navigation menu and then we can throw in some of the amazing effects using CSS3. By using your own creativity in CSS3 you can design your navigation menu however you want. And these things are possible without any javascript and background images. Download source code. In my this example i am going to create a navigation menu as it can be seen in the Image. with two level of submenu. So we first write the simple HTML5 code so that we can create the basic structure of the navigation menu. <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">JavaScript</a></li> <li><a href="#">Tutorials</a> <ul> <li><a href="#">Web Designing<...