Latest News

Saturday, 13 December 2014

Fast Hover Image Slideshow with CSS3

Add a Fast Hover Image Slideshow with CSS3 on website or blogger. Let us follow the below steps.
Fast Hover Image Slideshow with CSS3 Default
Step 1: Go to Blogger Click the Dashboard then
Step 2: Now Click on Template->Edit HTML-> Proceed
Step 3: Now Find this code ]]></b:skin> by pressing Ctrl + F
Step 4: Copy the code from below and Paste it  Before/above ]]></b:skin>
.container{
 width: 100%;
 position: relative;
 min-height: 750px;
}
.container > header{
 margin: 10px;
 padding: 20px 10px 10px 10px;
 position: relative;
 display: block;
 text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    text-align: center;
}
.container > header > span{
 font-size: 14px;
 letter-spacing: 3px;
 line-height: 20px;
 display: block;
 font-weight: 400;
 text-transform: uppercase;
 color: #009B52;
 text-shadow: 1px 1px 1px rgba(255,255,255,0.7);
}
.container > header h1{
 font-size: 36px;
 line-height: 36px;
 margin: 0;
 position: relative;
 font-weight: 300;
 color: #333;
 padding: 5px 0px;
 letter-spacing: -1px;
 text-shadow: 1px 1px 1px rgba(255,255,255,0.7);
}
.container > header h1 span{
 font-weight: 700;
}
.container > header h2{
 font-size: 14px;
 font-weight: 300;
 letter-spacing: 2px;
 text-transform: uppercase;
 margin: 0;
 padding: 15px 0 5px 0;
 color: #6190ca;
 text-shadow: 1px 1px 1px rgba(255,255,255,0.7);
}
.container > header p{
 color: #444;
 margin: 5px 0;
 text-shadow: 1px 1px 1px rgba(255,255,255,0.7);
}
/* Header Style */
.Blogsitedesigns-top{
 line-height: 24px;
 font-size: 11px;
 background: #fff;
 background: rgba(255, 255, 255, 0.6);
 text-transform: uppercase;
 z-index: 9999;
 position: relative;
 font-family: Cambria, Georgia, serif;
 box-shadow: 1px 0px 2px rgba(0,0,0,0.2);
}
.Blogsitedesigns-top a{
 padding: 0px 10px;
 letter-spacing: 1px;
 color: #888;
 display: inline-block;
 text-shadow: 1px 0 0 rgba(255,255,255,0.9);
}
.Blogsitedesigns-top a:hover{
 background: rgba(255,255,255,0.7);
}
.Blogsitedesigns-top span.right{
 float: right;
}
.Blogsitedesigns-top span.right a{
 float: left;
 display: block;
}
/* Demo Buttons Style */
/* Demo Buttons Style */
.Blogsitedesigns-demos{
    text-align: center;
 display: block;
 line-height: 30px;
 padding: 5px 0px;
}
.Blogsitedesigns-demos a{
    display: inline-block;
 margin: 0px 4px;
 padding: 0px 8px;
 color: #fff;
 line-height: 20px;
 font-size: 13px;
 text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
 border: 1px solid #00914B;
 background: #00af4f;
 background: -moz-linear-gradient(top, #00af4f 0%, #009b52 100%);
 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00af4f), color-stop(100%,#009b52));
 background: -webkit-linear-gradient(top, #00af4f 0%,#009b52 100%);
 background: -o-linear-gradient(top, #00af4f 0%,#009b52 100%);
 background: -ms-linear-gradient(top, #00af4f 0%,#009b52 100%);
 background: linear-gradient(top, #00af4f 0%,#009b52 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00af4f', endColorstr='#009b52',GradientType=0 );
 box-shadow: 0px 1px 1px rgba(0,0,0,0.3);
}
.Blogsitedesigns-demos a:hover{
 background: #00af4f;
}
.Blogsitedesigns-demos a:active{
 background: #3AAD6E;
 box-shadow: 0px 1px 1px rgba(255,255,255,0.9);
}
.Blogsitedesigns-demos a.current-demo,
.Blogsitedesigns-demos a.current-demo:hover{
 background: #008243;
 text-shadow: 1px 1px 1px rgba(255,255,255,0.2);
 box-shadow: 0px 1px 1px rgba(255,255,255,0.9);
 color: #005B2D;
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00af4f', endColorstr='#00af4f',GradientType=0 ); /* IE6-9 */
}
.ie-note{
 font-size: 100px;
 display: none;
}
.hs-wrapper{
 width: 333px;
 height: 500px;
 position: relative;
 margin: 0 auto;
 overflow: hidden;
 box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.hs-wrapper img{
 top: 0px;
 left: 0px;
 position: absolute;
 -webkit-animation: showMe 0.8s linear infinite 0s forwards;
 -moz-animation: showMe 0.8s linear infinite 0s forwards;
 -o-animation: showMe 0.8s linear infinite 0s forwards;
 -ms-animation: showMe 0.8s linear infinite 0s forwards;
 animation: showMe 0.8s linear infinite 0s forwards;
 -webkit-animation-play-state: paused;
 -moz-animation-play-state: paused;
 -o-animation-play-state: paused;
 -ms-animation-play-state: paused;
 animation-play-state: paused;
}
.hs-wrapper img:nth-child(1){
 z-index: 9;
}
.hs-wrapper img:nth-child(2){
    -webkit-animation-delay: 0.1s;
 -moz-animation-delay: 0.1s;
 -o-animation-delay: 0.1s;
 -ms-animation-delay: 0.1s;
 animation-delay: 0.1s;
 z-index: 8;
}
.hs-wrapper img:nth-child(3){
    -webkit-animation-delay: 0.2s;
 -moz-animation-delay: 0.2s;
 -o-animation-delay: 0.2s;
 -ms-animation-delay: 0.2s;
 animation-delay: 0.2s;
 z-index: 7;
}
.hs-wrapper img:nth-child(4){
    -webkit-animation-delay: 0.3s;
 -moz-animation-delay: 0.3s;
 -o-animation-delay: 0.3s;
 -ms-animation-delay: 0.3s;
 animation-delay: 0.3s;
 z-index: 6;
}
.hs-wrapper img:nth-child(5){
    -webkit-animation-delay: 0.4s;
 -moz-animation-delay: 0.4s;
 -o-animation-delay: 0.4s;
 -ms-animation-delay: 0.4s;
 animation-delay: 0.4s;
 z-index: 5;
}
.hs-wrapper img:nth-child(6){
    -webkit-animation-delay: 0.5s;
 -moz-animation-delay: 0.5s;
 -o-animation-delay: 0.5s;
 -ms-animation-delay: 0.5s;
 animation-delay: 0.5s;
 z-index: 4;
}
.hs-wrapper img:nth-child(7){
    -webkit-animation-delay: 0.6s;
 -moz-animation-delay: 0.6s;
 -o-animation-delay: 0.6s;
 -ms-nimation-delay: 0.6s;
 animation-delay: 0.6s;
 z-index: 3;
}
.hs-wrapper img:nth-child(8){
    -webkit-animation-delay: 0.7s;
 -moz-animation-delay: 0.7s;
 -o-animation-delay: 0.7s;
 -ms-animation-delay: 0.7s;
 animation-delay: 0.7s;
 z-index: 2;
}
.hs-wrapper:hover img{
 -webkit-animation-play-state: running;
 -moz-animation-play-state: running;
 -o-animation-play-state: running;
 -ms-animation-play-state: running;
 animation-play-state: running;
}
.hs-overlay{
 position: absolute;
 width: 100%;
 height: 100%;
 opacity: 0;
 z-index: 500;
 background: rgba(0,0,0,0.6);
 box-shadow: 0 0 0 0 rgba(255,255,255,0.3) inset;
 pointer-events: none;
 -webkit-transition: all 0.3s linear;
 -moz-transition: all 0.3s linear;
 -o-transition: all 0.3s linear;
 -ms-transition: all 0.3s linear;
 transition: all 0.3s linear;
}
.hs-overlay span{
 display: block;
 padding: 20px;
 position: absolute;
 width: 293px;
 left: 20px;
 top: 200px;
 color: #fff;
 -moz-box-sizing: border-box;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
 font-size: 38px;
 border-top: 1px solid rgba(255,255,255,0.3);
 border-bottom: 1px solid rgba(255,255,255,0.3);
 text-align: center;
 pointer-events: none;
 -webkit-touch-callout: none;
 -webkit-user-select: none;
 -khtml-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
}
.hs-wrapper:hover .hs-overlay{
 opacity: 1;
 box-shadow: 0 0 0 5px rgba(255,255,255,0.3) inset;
}

@-webkit-keyframes showMe {
    0% { visibility: visible; z-index: 100; }
 12.5% { visibility: visible; z-index: 100; }
 25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}

@-moz-keyframes showMe {
    0% { visibility: visible; z-index: 100; }
 12.5% { visibility: visible; z-index: 100; }
 25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}

@-o-keyframes showMe {
    0% { visibility: visible; z-index: 100; }
 12.5% { visibility: visible; z-index: 100; }
 25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}

@-ms-keyframes showMe {
    0% { visibility: visible; z-index: 100; }
 12.5% { visibility: visible; z-index: 100; }
 25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}

@keyframes showMe {
    0% { visibility: visible; z-index: 100; }
 12.5% { visibility: visible; z-index: 100; }
 25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}
 
Step 5: Now Save Template then
Step 6: Now Find this code </head> by pressing Ctrl + F
Step 7: Copy the code from below and Paste it  Before/above </head>
<script type="text/javascript">
  ;window.Modernizr=function(a,b,c){function u(a){j.cssText=a}function v(a,b){return u(prefixes.join(a+";")+(b||""))}function w(a,b){return typeof a===b}function x(a,b){return!!~(""+a).indexOf(b)}function y(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:w(f,"function")?f.bind(d||b):f}return!1}var d="2.5.3",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k,l={}.toString,m={},n={},o={},p=[],q=p.slice,r,s={}.hasOwnProperty,t;!w(s,"undefined")&&!w(s.call,"undefined")?t=function(a,b){return s.call(a,b)}:t=function(a,b){return b in a&&w(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=q.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(q.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(q.call(arguments)))};return e});for(var z in m)t(m,z)&&(r=z.toLowerCase(),e[r]=m[z](),p.push((e[r]?"":"no-")+r));return u(""),i=k=null,function(a,b){function g(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function h(){var a=k.elements;return typeof a=="string"?a.split(" "):a}function i(a){var b={},c=a.createElement,e=a.createDocumentFragment,f=e();a.createElement=function(a){var e=(b[a]||(b[a]=c(a))).cloneNode();return k.shivMethods&&e.canHaveChildren&&!d.test(a)?f.appendChild(e):e},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+h().join().replace(/\w+/g,function(a){return b[a]=c(a),f.createElement(a),'c("'+a+'")'})+");return n}")(k,f)}function j(a){var b;return a.documentShived?a:(k.shivCSS&&!e&&(b=!!g(a,"article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio{display:none}canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden]{display:none}audio[controls]{display:inline-block;*display:inline;*zoom:1}mark{background:#FF0;color:#000}")),f||(b=!i(a)),b&&(a.documentShived=b),a)}var c=a.html5||{},d=/^<|^(?:button|form|map|select|textarea)$/i,e,f;(function(){var a=b.createElement("a");a.innerHTML="<xyz></xyz>",e="hidden"in a,f=a.childNodes.length==1||function(){try{b.createElement("a")}catch(a){return!0}var c=b.createDocumentFragment();return typeof c.cloneNode=="undefined"||typeof c.createDocumentFragment=="undefined"||typeof c.createElement=="undefined"}()})();var k={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:j};a.html5=k,j(b)}(this,b),e._version=d,g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+p.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return o.call(a)=="[object Function]"}function e(a){return typeof a=="string"}function f(){}function g(a){return!a||a=="loaded"||a=="complete"||a=="uninitialized"}function h(){var a=p.shift();q=1,a?a.t?m(function(){(a.t=="c"?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){a!="img"&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l={},o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};y[c]===1&&(r=1,y[c]=[],l=b.createElement(a)),a=="object"?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),a!="img"&&(r||y[c]===2?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i(b=="c"?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),p.length==1&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&o.call(a.opera)=="[object Opera]",l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return o.call(a)=="[object Array]"},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f<d;f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));for(f=0;f<b;f++)c=x[f](c);return c}function g(a,e,f,g,i){var j=b(a),l=j.autoCallback;j.url.split(".").pop().split("?").shift(),j.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]||h),j.instead?j.instead(a,e,f,g,i):(y[j.url]?j.noexec=!0:y[j.url]=1,f.load(j.url,j.forceCSS||!j.forceJS&&"css"==j.url.split(".").pop().split("?").shift()?"c":c,j.noexec,j.attrs,j.timeout),(d(e)||d(l))&&f.load(function(){k(),e&&e(j.origUrl,i,g),l&&l(j.origUrl,i,g),y[j.url]=2})))}function i(a,b){function c(a,c){if(a){if(e(a))c||(j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}),g(a,j,b,0,h);else if(Object(a)===a)for(n in m=function(){var b=0,c;for(c in a)a.hasOwnProperty(c)&&b++;return b}(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}:j[n]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),l()}}(k[n])),g(a[n],j,b,n,h))}else!c&&l()}var h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f,m,n;c(h?a.yep:a.nope,!!i),i&&c(i)}var j,l,m=this.yepnope.loader;if(e(a))g(a,0,m,0);else if(w(a))for(j=0;j<a.length;j++)l=a[j],e(l)?g(l,0,m,0):w(l)?B(l):Object(l)===l&&i(l,m);else Object(a)===a&&i(a,m)},B.addPrefix=function(a,b){z[a]=b},B.addFilter=function(a){x.push(a)},B.errorTimeout=1e4,b.readyState==null&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",A=function(){b.removeEventListener("DOMContentLoaded",A,0),b.readyState="complete"},0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){var k=b.createElement("script"),l,o,e=e||B.errorTimeout;k.src=a;for(o in d)k.setAttribute(o,d[o]);c=j?h:c||f,k.onreadystatechange=k.onload=function(){!l&&g(k.readyState)&&(l=1,c(),k.onload=k.onreadystatechange=null)},m(function(){l||(l=1,c(1))},e),i?k.onload():n.parentNode.insertBefore(k,n)},a.yepnope.injectCss=function(a,c,d,e,g,i){var e=b.createElement("link"),j,c=i?h:c||f;e.href=a,e.rel="stylesheet",e.type="text/css";for(j in d)e.setAttribute(j,d[j]);g||(n.parentNode.insertBefore(e,n),m(c,0))}}(this,document),Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0))};
  </script>
Step 8: Click the Layout and Add a Gadget then
Step 9:
Click the HTML/JavaScript then

Step 10: Copy the Below code And Paste on it. 

<div class="container">
<section>
    <div class="hs-wrapper">
     <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiKbwQPiqyIrg2_G3yuxbsqXFE5S3TpxdiaJJNZG1xlpw0DUqgx9gEst-8T-oMZBwQB3Ie9RclaA3gbfp0JE1Q1D94QSiaiCEwcdArFSGud8_RzWjridBJn0XyrOHdIXOw_eXRR3sn3wP0/s1600/1.jpg" alt="image01"/>
     <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOqNf1Idib4XlCvF6kuGkTiXuwCADIskwx-0cqHaC1RSdO8WIZQTZm1XHDSXk4oGmvw7btQzyDkYg4SMzRpHykngcGM_yn_zM2fNCLUI6wDMJbc765B3u1Dd2xbPSeZHL11JAPVrBvK3c/s1600/5.jpg" alt="image02"/>
     <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgpiUHE_pZMAI_5uWvqmAgHihkpw2rIovDolWBiI8lPGG6J-wYnsyspRgKVXadtd4f63qNg8p9ZvqIifP_N9ml2rgG36S_5iw8hjMMvR2xeyKbbX0-lYkeEZTXJtAspsrbewC_O4tdrhr8/s1600/2.jpg" alt="image03"/>
     <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHrGGSZxjuRgDu9frVOiTrqhnwAXprCvby3Gr-rdzIAcygton8W6ZuCodX0s_XU3UcPWPr0oQUw8pqk2biOu1jgRzF-XA9VK4Yct0TyVPTnCnYNZoDKfrDfgooH5XxHx82pu0E0T775es/s1600/6.jpg" alt="image04"/>
     <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiENqUYgAqhYl5Q3jtrWL2Lw7KPE71zXgqREQvfobT_LrXrViixuZnO20hS8QMrH_eJz8_gfuCDkJDg689hVXakL2ZzjsMPF9dVJFwJOKYdZgW6S4jMb9FPkEKZIlc1Jwx3HlqN-1YW6WY/s1600/3.jpg" alt="image05"/>
     <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEglTXGjWAq1Kr7RzdQlAaJJk1wddW2kT6f6xFwYL3yT2Oht0sthh2FCLkSEDZBlV-U71TDoEgWBsI8GKvzSMTyBXOhwDill4yh0WoyWLIE0tiV_B3hoRXv6ILz0-uAvZxnrHABumbswObA/s1600/7.jpg" alt="image06"/>
     <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiZVLHSkB732wmar-TxD9dCEVPu38rl3BQvkdsFHAb2QkP9KQCK0P8ca4XgArsNEbnOUUhmVUohqkSBJiNlOaiQJZYzAv6dud5-WWJw_zj0kcCShQrjv7vL32P1Q1-M7VgMskl3CVTJrWo/s1600/4.jpg" alt="image07"/>
     <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxg8E4zG2WPxZxPwiJusdirRVOCeElW3eCd17Xn06KttxSZ6Wj83s1HJANDE8jBIy4vDSURm2b2dVyncOPT91dKwKWVKCNBdOOd_3Dhbc7C4SkwgusgwL3yVNRAmoYqQuxVb48sZ13QgI/s1600/8.jpg" alt="image08"/>
     <div class="hs-overlay">
      <span>Summer <strong>2015</strong></span>
     </div>
    </div> 

</section>
 </div>
Step 11: Change the Red Colored Images Link with your Image.
Step 12: Change the Green Colored Name with your Name.
Step 13: Save it and It will works. 

Fast Hover Image Slideshow with CSS3 With Titles
Step 1: Go to Blogger Click the Dashboard then
Step 2: Now Click on Template->Edit HTML-> Proceed
Step 3: Now Find this code ]]></b:skin> by pressing Ctrl + F
Step 4: Copy the code from below and Paste it  Before/above ]]></b:skin>
.container{
    width: 100%;
    position: relative;
    min-height: 750px;
}
.container > header{
    margin: 10px;
    padding: 20px 10px 10px 10px;
    position: relative;
    display: block;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    text-align: center;
}
.container > header > span{
    font-size: 14px;
    letter-spacing: 3px;
    line-height: 20px;
    display: block;
    font-weight: 400;
    text-transform: uppercase;
    color: #009B52;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.7);
}
.container > header h1{
    font-size: 36px;
    line-height: 36px;
    margin: 0;
    position: relative;
    font-weight: 300;
    color: #333;
    padding: 5px 0px;
    letter-spacing: -1px;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.7);
}
.container > header h1 span{
    font-weight: 700;
}
.container > header h2{
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    padding: 15px 0 5px 0;
    color: #6190ca;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.7);
}
.container > header p{
    color: #444;
    margin: 5px 0;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.7);
}
/* Header Style */
.Blogsitedesigns-top{
    line-height: 24px;
    font-size: 11px;
    background: #fff;
    background: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    z-index: 9999;
    position: relative;
    font-family: Cambria, Georgia, serif;
    box-shadow: 1px 0px 2px rgba(0,0,0,0.2);
}
.Blogsitedesigns-top a{
    padding: 0px 10px;
    letter-spacing: 1px;
    color: #888;
    display: inline-block;
    text-shadow: 1px 0 0 rgba(255,255,255,0.9);
}
.Blogsitedesigns-top a:hover{
    background: rgba(255,255,255,0.7);
}
.Blogsitedesigns-top span.right{
    float: right;
}
.Blogsitedesigns-top span.right a{
    float: left;
    display: block;
}
/* Demo Buttons Style */
/* Demo Buttons Style */
.Blogsitedesigns-demos{
    text-align: center;
    display: block;
    line-height: 30px;
    padding: 5px 0px;
}
.Blogsitedesigns-demos a{
    display: inline-block;
    margin: 0px 4px;
    padding: 0px 8px;
    color: #fff;
    line-height: 20px;   
    font-size: 13px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    border: 1px solid #00914B;
    background: #00af4f;
    background: -moz-linear-gradient(top, #00af4f 0%, #009b52 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00af4f), color-stop(100%,#009b52));
    background: -webkit-linear-gradient(top, #00af4f 0%,#009b52 100%);
    background: -o-linear-gradient(top, #00af4f 0%,#009b52 100%);
    background: -ms-linear-gradient(top, #00af4f 0%,#009b52 100%);
    background: linear-gradient(top, #00af4f 0%,#009b52 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00af4f', endColorstr='#009b52',GradientType=0 );
    box-shadow: 0px 1px 1px rgba(0,0,0,0.3);
}
.Blogsitedesigns-demos a:hover{
    background: #00af4f;
}
.Blogsitedesigns-demos a:active{
    background: #3AAD6E;
    box-shadow: 0px 1px 1px rgba(255,255,255,0.9);
}
.Blogsitedesigns-demos a.current-demo,
.Blogsitedesigns-demos a.current-demo:hover{
    background: #008243;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.2);
    box-shadow: 0px 1px 1px rgba(255,255,255,0.9);
    color: #005B2D;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00af4f', endColorstr='#00af4f',GradientType=0 ); /* IE6-9 */
}
.ie-note{
    font-size: 100px;
    display: none;
}
.hs-wrapper{
    width: 333px;
    height: 500px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.hs-wrapper img{
    top: 0px;
    left: 0px;
    position: absolute;
    -webkit-animation: showMe 0.8s linear infinite 0s forwards;
    -moz-animation: showMe 0.8s linear infinite 0s forwards;
    -o-animation: showMe 0.8s linear infinite 0s forwards;
    -ms-animation: showMe 0.8s linear infinite 0s forwards;
    animation: showMe 0.8s linear infinite 0s forwards;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    -ms-animation-play-state: paused;
    animation-play-state: paused;   
}
.hs-titles span{
    -webkit-animation: showMeTitle 0.8s linear infinite 0s forwards;
    -moz-animation: showMeTitle 0.8s linear infinite 0s forwards;
    -o-animation: showMeTitle 0.8s linear infinite 0s forwards;
    -ms-animation: showMeTitle 0.8s linear infinite 0s forwards;
    animation: showMeTitle 0.8s linear infinite 0s forwards;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    -ms-animation-play-state: paused;
    animation-play-state: paused;   
}
.hs-wrapper:hover .hs-titles span{
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    -ms-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
}
.hs-wrapper img:nth-child(1),
.hs-titles span:nth-child(1){
    z-index: 9;
}
.hs-wrapper img:nth-child(2),
.hs-titles span:nth-child(2){
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -o-animation-delay: 0.1s;
    -ms-animation-delay: 0.1s;
    animation-delay: 0.1s;
    z-index: 8;
}
.hs-wrapper img:nth-child(3),
.hs-titles span:nth-child(3){
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    -ms-animation-delay: 0.2s;
    animation-delay: 0.2s;
    z-index: 7;
}
.hs-wrapper img:nth-child(4),
.hs-titles span:nth-child(4){
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    -ms-animation-delay: 0.3s;
    animation-delay: 0.3s;
    z-index: 6;
}
.hs-wrapper img:nth-child(5),
.hs-titles span:nth-child(5){
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    -ms-animation-delay: 0.4s;
    animation-delay: 0.4s;
    z-index: 5;
}
.hs-wrapper img:nth-child(6),
.hs-titles span:nth-child(6){
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    -ms-animation-delay: 0.5s;
    animation-delay: 0.5s;
    z-index: 4;
}
.hs-wrapper img:nth-child(7),
.hs-titles span:nth-child(7){
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    -ms-nimation-delay: 0.6s;
    animation-delay: 0.6s;
    z-index: 3;
}
.hs-wrapper img:nth-child(8),
.hs-titles span:nth-child(8){
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    -o-animation-delay: 0.7s;
    -ms-animation-delay: 0.7s;
    animation-delay: 0.7s;
    z-index: 2;
}
.hs-wrapper:hover img{
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    -ms-animation-play-state: running;
    animation-play-state: running;
}
.hs-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 500;
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.3) inset;
    pointer-events: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.hs-titles{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.hs-overlay span{
    display: block;
    padding: 20px;
    position: absolute;
    width: 293px;
    left: 20px;
    top: 200px;
    color: #fff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 38px;
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    text-align: center;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.hs-titles span{
    display: block;
    padding: 10px 20px;
    position: absolute;
    width: 293px;
    left: 20px;
    bottom: 20px;
    color: #fff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
    background: #555;
    text-align: left;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.hs-wrapper:hover .hs-overlay{
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(255,255,255,0.3) inset;
}
@-webkit-keyframes showMe {
    0% { visibility: visible; z-index: 100; }
    12.5% { visibility: visible; z-index: 100; }
    25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}
@-webkit-keyframes showMeTitle {
    0% { visibility: visible; z-index: 1001; }
    12.5% { visibility: visible; z-index: 1001; }
    25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}


@-moz-keyframes showMe {
    0% { visibility: visible; z-index: 100; }
    12.5% { visibility: visible; z-index: 100; }
    25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}
@-moz-keyframes showMeTitle {
    0% { visibility: visible; z-index: 1001; }
    12.5% { visibility: visible; z-index: 1001; }
    25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}


@-o-keyframes showMe {
    0% { visibility: visible; z-index: 100; }
    12.5% { visibility: visible; z-index: 100; }
    25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}
@-o-keyframes showMeTitle {
    0% { visibility: visible; z-index: 1001; }
    12.5% { visibility: visible; z-index: 1001; }
    25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}


@-ms-keyframes showMe {
    0% { visibility: visible; z-index: 100; }
    12.5% { visibility: visible; z-index: 100; }
    25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}
@-ms-keyframes showMeTitle {
    0% { visibility: visible; z-index: 1001; }
    12.5% { visibility: visible; z-index: 1001; }
    25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}
@keyframes showMe {
    0% { visibility: visible; z-index: 100; }
    12.5% { visibility: visible; z-index: 100; }
    25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}
@keyframes showMeTitle {
    0% { visibility: visible; z-index: 1001; }
    12.5% { visibility: visible; z-index: 1001; }
    25% { visibility: hidden; z-index: 0; }
    100% { visibility: hidden; z-index: 0; }
}
Step 5: Now Save Template then
Step 6: Now Find this code </head> by pressing Ctrl + F
Step 7: Copy the code from below and Paste it  Before/above </head>
<script type="text/javascript">
        ;window.Modernizr=function(a,b,c){function u(a){j.cssText=a}function v(a,b){return u(prefixes.join(a+";")+(b||""))}function w(a,b){return typeof a===b}function x(a,b){return!!~(""+a).indexOf(b)}function y(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:w(f,"function")?f.bind(d||b):f}return!1}var d="2.5.3",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k,l={}.toString,m={},n={},o={},p=[],q=p.slice,r,s={}.hasOwnProperty,t;!w(s,"undefined")&&!w(s.call,"undefined")?t=function(a,b){return s.call(a,b)}:t=function(a,b){return b in a&&w(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=q.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(q.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(q.call(arguments)))};return e});for(var z in m)t(m,z)&&(r=z.toLowerCase(),e[r]=m[z](),p.push((e[r]?"":"no-")+r));return u(""),i=k=null,function(a,b){function g(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function h(){var a=k.elements;return typeof a=="string"?a.split(" "):a}function i(a){var b={},c=a.createElement,e=a.createDocumentFragment,f=e();a.createElement=function(a){var e=(b[a]||(b[a]=c(a))).cloneNode();return k.shivMethods&&e.canHaveChildren&&!d.test(a)?f.appendChild(e):e},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+h().join().replace(/\w+/g,function(a){return b[a]=c(a),f.createElement(a),'c("'+a+'")'})+");return n}")(k,f)}function j(a){var b;return a.documentShived?a:(k.shivCSS&&!e&&(b=!!g(a,"article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio{display:none}canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden]{display:none}audio[controls]{display:inline-block;*display:inline;*zoom:1}mark{background:#FF0;color:#000}")),f||(b=!i(a)),b&&(a.documentShived=b),a)}var c=a.html5||{},d=/^<|^(?:button|form|map|select|textarea)$/i,e,f;(function(){var a=b.createElement("a");a.innerHTML="<xyz></xyz>",e="hidden"in a,f=a.childNodes.length==1||function(){try{b.createElement("a")}catch(a){return!0}var c=b.createDocumentFragment();return typeof c.cloneNode=="undefined"||typeof c.createDocumentFragment=="undefined"||typeof c.createElement=="undefined"}()})();var k={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:j};a.html5=k,j(b)}(this,b),e._version=d,g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+p.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return o.call(a)=="[object Function]"}function e(a){return typeof a=="string"}function f(){}function g(a){return!a||a=="loaded"||a=="complete"||a=="uninitialized"}function h(){var a=p.shift();q=1,a?a.t?m(function(){(a.t=="c"?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){a!="img"&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l={},o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};y[c]===1&&(r=1,y[c]=[],l=b.createElement(a)),a=="object"?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),a!="img"&&(r||y[c]===2?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i(b=="c"?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),p.length==1&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&o.call(a.opera)=="[object Opera]",l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return o.call(a)=="[object Array]"},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f<d;f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));for(f=0;f<b;f++)c=x[f](c);return c}function g(a,e,f,g,i){var j=b(a),l=j.autoCallback;j.url.split(".").pop().split("?").shift(),j.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]||h),j.instead?j.instead(a,e,f,g,i):(y[j.url]?j.noexec=!0:y[j.url]=1,f.load(j.url,j.forceCSS||!j.forceJS&&"css"==j.url.split(".").pop().split("?").shift()?"c":c,j.noexec,j.attrs,j.timeout),(d(e)||d(l))&&f.load(function(){k(),e&&e(j.origUrl,i,g),l&&l(j.origUrl,i,g),y[j.url]=2})))}function i(a,b){function c(a,c){if(a){if(e(a))c||(j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}),g(a,j,b,0,h);else if(Object(a)===a)for(n in m=function(){var b=0,c;for(c in a)a.hasOwnProperty(c)&&b++;return b}(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}:j[n]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),l()}}(k[n])),g(a[n],j,b,n,h))}else!c&&l()}var h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f,m,n;c(h?a.yep:a.nope,!!i),i&&c(i)}var j,l,m=this.yepnope.loader;if(e(a))g(a,0,m,0);else if(w(a))for(j=0;j<a.length;j++)l=a[j],e(l)?g(l,0,m,0):w(l)?B(l):Object(l)===l&&i(l,m);else Object(a)===a&&i(a,m)},B.addPrefix=function(a,b){z[a]=b},B.addFilter=function(a){x.push(a)},B.errorTimeout=1e4,b.readyState==null&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",A=function(){b.removeEventListener("DOMContentLoaded",A,0),b.readyState="complete"},0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){var k=b.createElement("script"),l,o,e=e||B.errorTimeout;k.src=a;for(o in d)k.setAttribute(o,d[o]);c=j?h:c||f,k.onreadystatechange=k.onload=function(){!l&&g(k.readyState)&&(l=1,c(),k.onload=k.onreadystatechange=null)},m(function(){l||(l=1,c(1))},e),i?k.onload():n.parentNode.insertBefore(k,n)},a.yepnope.injectCss=function(a,c,d,e,g,i){var e=b.createElement("link"),j,c=i?h:c||f;e.href=a,e.rel="stylesheet",e.type="text/css";for(j in d)e.setAttribute(j,d[j]);g||(n.parentNode.insertBefore(e,n),m(c,0))}}(this,document),Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0))};
</script>
Step 8: Click the Layout and Add a Gadget then
Step 9:
Click the HTML/JavaScript then

Step 10: Copy the Below code And Paste on it. 

<div class="container">
<section>
<div class="hs-wrapper">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiKbwQPiqyIrg2_G3yuxbsqXFE5S3TpxdiaJJNZG1xlpw0DUqgx9gEst-8T-oMZBwQB3Ie9RclaA3gbfp0JE1Q1D94QSiaiCEwcdArFSGud8_RzWjridBJn0XyrOHdIXOw_eXRR3sn3wP0/s1600/1.jpg" alt="image01"/>
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOqNf1Idib4XlCvF6kuGkTiXuwCADIskwx-0cqHaC1RSdO8WIZQTZm1XHDSXk4oGmvw7btQzyDkYg4SMzRpHykngcGM_yn_zM2fNCLUI6wDMJbc765B3u1Dd2xbPSeZHL11JAPVrBvK3c/s1600/5.jpg" alt="image02"/>
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgpiUHE_pZMAI_5uWvqmAgHihkpw2rIovDolWBiI8lPGG6J-wYnsyspRgKVXadtd4f63qNg8p9ZvqIifP_N9ml2rgG36S_5iw8hjMMvR2xeyKbbX0-lYkeEZTXJtAspsrbewC_O4tdrhr8/s1600/2.jpg" alt="image03"/>
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHrGGSZxjuRgDu9frVOiTrqhnwAXprCvby3Gr-rdzIAcygton8W6ZuCodX0s_XU3UcPWPr0oQUw8pqk2biOu1jgRzF-XA9VK4Yct0TyVPTnCnYNZoDKfrDfgooH5XxHx82pu0E0T775es/s1600/6.jpg" alt="image04"/>
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiENqUYgAqhYl5Q3jtrWL2Lw7KPE71zXgqREQvfobT_LrXrViixuZnO20hS8QMrH_eJz8_gfuCDkJDg689hVXakL2ZzjsMPF9dVJFwJOKYdZgW6S4jMb9FPkEKZIlc1Jwx3HlqN-1YW6WY/s1600/3.jpg" alt="image05"/>
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEglTXGjWAq1Kr7RzdQlAaJJk1wddW2kT6f6xFwYL3yT2Oht0sthh2FCLkSEDZBlV-U71TDoEgWBsI8GKvzSMTyBXOhwDill4yh0WoyWLIE0tiV_B3hoRXv6ILz0-uAvZxnrHABumbswObA/s1600/7.jpg" alt="image06"/>
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiZVLHSkB732wmar-TxD9dCEVPu38rl3BQvkdsFHAb2QkP9KQCK0P8ca4XgArsNEbnOUUhmVUohqkSBJiNlOaiQJZYzAv6dud5-WWJw_zj0kcCShQrjv7vL32P1Q1-M7VgMskl3CVTJrWo/s1600/4.jpg" alt="image07"/>
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxg8E4zG2WPxZxPwiJusdirRVOCeElW3eCd17Xn06KttxSZ6Wj83s1HJANDE8jBIy4vDSURm2b2dVyncOPT91dKwKWVKCNBdOOd_3Dhbc7C4SkwgusgwL3yVNRAmoYqQuxVb48sZ13QgI/s1600/8.jpg" alt="image08"/>
<div class="hs-overlay">
<span>Summer <strong>2015</strong></span>
</div>
<div class="hs-titles">
<span>Star Print See-Through Lace Long Sleeve Dress</span>
<span>Knit Print 2-in-1 Long Sleeve Fitted Dress</span>
<span>Sleeveless Velvet Fur Trim Sheath Dress</span>
<span>2-in-1 Knit Long Sleeve Pussybow Dress</span>
<span>Jacquard Print High Waist 3/4 Sleeve Lace Dress</span>
<span>Flaps Detail Lace Sheath Tank Dress</span>
<span>Mottled Print Knit Tiered Frills 2-in-1 Dress</span>
<span>Sleeveless Lace Back Slanting Zip Front Knit Sheath Dress</span>
</div>
</div>
</section>
</div>

Step 11: Change the Red Colored Images Link with your Image.
Step 12: Change the Green Colored Name with your Name.
Step 13: Save it and It will works.


 


 
Fast Hover Image Slideshow
195 KB
Fast Hover Image Slideshow
View a Sample
  • Blogger Comments
  • Facebook Comments

0 comments:

Post a Comment

Item Reviewed: Fast Hover Image Slideshow with CSS3 Description: Rating: 5 Reviewed By: Unknown
Scroll to Top