Please note that this will only work properly in modern browsers that support the CSS3 properties in use.
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Mauris fermentum dictum magna. Sed laoreet aliquam leo.
ButtonLorem ipsum dolor sit amet, consectetuer adipiscing elit. Mauris fermentum dictum magna. Sed laoreet aliquam leo.
ButtonLorem ipsum dolor sit amet, consectetuer adipiscing elit. Mauris fermentum dictum magna. Sed laoreet aliquam leo.
ButtonLorem ipsum dolor sit amet, consectetuer adipiscing elit. Mauris fermentum dictum magna. Sed laoreet aliquam leo.
ButtonLorem ipsum dolor sit amet, consectetuer adipiscing elit. Mauris fermentum dictum magna. Sed laoreet aliquam leo.
ButtonLorem ipsum dolor sit amet, consectetuer adipiscing elit. Mauris fermentum dictum magna. Sed laoreet aliquam leo.
ButtonLorem ipsum dolor sit amet, consectetuer adipiscing elit. Mauris fermentum dictum magna. Sed laoreet aliquam leo.
ButtonLorem ipsum dolor sit amet, consectetuer adipiscing elit. Mauris fermentum dictum magna. Sed laoreet aliquam leo.
ButtonThe structure of markup is very simple and intuitive. Create a container that will have our image and all the other infomation.
<div class="tm_view tm_view_first"> <img src="YourImage.jpg" alt="" /> <div class="tm_mask"> <h2> Heading </h2> <p> Text </p> <a href="" class="btn">Button</a> </div> </div>
Add the special class tm_view_first to the element with the class tm_view for the first effect.
In the second hover we will add the special class tm_view-second, but we will leave the element with the class tm_mask empty and wrap the description in a div with the class content
<div class="tm_view tm_view_second"> <img src="YourImage.jpg" alt="" /> <div class="tm_mask"></div> <div class="tm_content"> <h2> Heading </h2> <p> Text </p> <a href="" class="btn">Button</a> </div> </div>
For other hover effects you can use the same HTML structure. You only need to change class tm_view_second to the following ones:
tm_view_third - third effect
tm_view_fourth - fourth effect
tm_view_fifth - fifth effect
tm_view_sixth - sixth effect
tm_view_seventh - seventh effect
tm_view_eight - eight effect
In ninth hover, we will use two tm_mask elements to slide them in from the bottom right and the top left:
<div class="tm_view tm_view_ninth"> <img src="YourImage.jpg" alt="" /> <div class="tm_mask tm_mask-1"></div> <div class="tm_mask tm_mask-2"></div> <div class="tm_content"> <h2> Heading </h2> <p> Text </p> <a href="" class="btn">Button</a> </div> </div>
Define .tm_view and .tm_mask width and height which match image`s width and height in style.css file.
CSS3 has a really great potential for creating nice effects. Soon, we’ll hopefully be able to avoid the use of JavaScript for simple effects and rely 100% on CSS, in all browsers.
Add necessary class to the <a> tag (<a href="" class=""> Button Text </a>)
When applying CSS3 inset box-shadow or border-radius directly to the image element, the browser doesn't render the CSS style perfectly. However, if the image is applied as background-image, you can add any style to it and have it rendered properly.
To add such images to the page you need to copy the code and in the style.css file define background image and image dimensions.
<span class="tm_image_round"></span>
<span class="tm_image_card"></span>
<span class="tm_image_embossed"></span>
<span class="tm_image_soft-embossed"></span>
<span class="tm_image_cut_out"></span>
<span class="tm_image_morphing_glowing"></span>
<span class="tm_image_glossy"></span>
<span class="tm_image_reflection"></span>
.YourStyle{ background:url(YourImage.jpg) 0 0 no-repeat; width:YourImageWidth px; height:YourImageHeight px; }
<div class="tm_lifted"> <div class="tm_text-shadow"> Text </div> </div>
<div class="tm_perspective"> <div class="tm_text-shadow"> Text </div> </div>
<div class="tm_raised"> <div class="tm_text-shadow"> Text </div> </div>
<div class="tm_curved-vt-2"> <div class="tm_text-shadow"> Text </div> </div>
<div class="tm_curved-hz-2"> <div class="tm_text-shadow"> Text </div> </div>