Social Media Magazine

Smooth Jquery Featured Post Slideshow For Blogger

Posted on the 25 April 2013 by Mohammed39
Smooth Jquery Featured Post Slideshow For BloggerThis tutorial will shows you how to add featured content slideshow to show your featured post to your readers.This slideshow is very easy to setup and can easily manage width and height to match your template.Not only that you can change the speed of this slideshow easily.Default width is 550px and Default height is 200px. I think you will love this slideshow.You can see the DEMO of this widget from here.
1. Login to your blogger dashboard-->Template- -> Edit HTML
2. Scroll down to where you see </head> tag .
3. Copy below code and paste it just before the </head> tag .

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js' type='text/javascript'></script> <script type='text/javascript'> //<![CDATA[ /* ------------------------------------------------------------------------ s3Slider Developped By: Boban KariÅ¡ik -> http://www.serie3.info/  CSS Help: Mészáros Róbert -> http://www.perspectived.com/ Version: 1.0 Copyright: Feel free to redistribute the script/modify it, as   long as you leave my infos at the top. -------------------------------------------------------------------------- */ (function($){ $.fn.s3Slider = function(vars) {  var element     = this;  var timeOut     = (vars.timeOut != undefined) ? vars.timeOut : 4000;  var current     = null;  var timeOutFn   = null;  var faderStat   = true;  var mOver       = false;  var items       = $("#" + element[0].id + "Content ." + element[0].id + "Image");  var itemsSpan   = $("#" + element[0].id + "Content ." + element[0].id + "Image span");  items.each(function(i) {      $(items[i]).mouseover(function() {         mOver = true;      });      $(items[i]).mouseout(function() {          mOver   = false;          fadeElement(true);      });  });  var fadeElement = function(isMouseOut) {      var thisTimeOut = (isMouseOut) ? (timeOut/2) : timeOut;      thisTimeOut = (faderStat) ? 10 : thisTimeOut;      if(items.length > 0) {          timeOutFn = setTimeout(makeSlider, thisTimeOut);      } else {          console.log("Poof..");      }  }  var makeSlider = function() {      current = (current != null) ? current : items[(items.length-1)];      var currNo      = jQuery.inArray(current, items) + 1      currNo = (currNo == items.length) ? 0 : (currNo - 1);      var newMargin   = $(element).width() * currNo;      if(faderStat == true) {          if(!mOver) {              $(items[currNo]).fadeIn((timeOut/6), function() {                  if($(itemsSpan[currNo]).css('bottom') == 0) {                      $(itemsSpan[currNo]).slideUp((timeOut/6), function() {                          faderStat = false;                          current = items[currNo];                          if(!mOver) {                              fadeElement(false);                          }                      });                  } else {                      $(itemsSpan[currNo]).slideDown((timeOut/6), function() {                          faderStat = false;                          current = items[currNo];                          if(!mOver) {                              fadeElement(false);                          }                      });                  }              });          }      } else {          if(!mOver) {              if($(itemsSpan[currNo]).css('bottom') == 0) {                  $(itemsSpan[currNo]).slideDown((timeOut/6), function() {                      $(items[currNo]).fadeOut((timeOut/6), function() {                          faderStat = true;                          current = items[(currNo+1)];                          if(!mOver) {                              fadeElement(false);                          }                      });                  });              } else {                  $(itemsSpan[currNo]).slideUp((timeOut/6), function() {                  $(items[currNo]).fadeOut((timeOut/6), function() {                          faderStat = true;                          current = items[(currNo+1)];                          if(!mOver) {                              fadeElement(false);                          }                      });                  });              }          }      }  }  makeSlider(); }; })(jQuery); //]]> </script> <script type='text/javascript'> $(document).ready(function() { $('#s3slider').s3Slider({ timeOut: 4000 }); }); </script> <style type='text/css'> #s3slider { background:#000000; border:1px solid #818e8f; width: 550px; height: 200px; position: relative; overflow: hidden; } #s3sliderContent { width: 550px; position: absolute; top:0px; padding: 0px; margin: 0px; } .s3sliderImage { float: left; position: relative; display: none; } .s3sliderImage span { position: absolute; left: 0; font: 20px Trebuchet MS, sans-serif; padding: 10px 0px; width: 550px; background-color: #000; filter: alpha(opacity=80); -moz-opacity: 0.8; -khtml-opacity: 0.8; opacity: 0.8; color: #fff; display: none; bottom: 0; text-align:center; } .clear { clear: both; } </style>

NOTE : To change the speed of slideshow, change the value 4000.
4. Save your template. 5. Now go to Layout--> click on "Add a gadget". 6. Select "html/java script" and add the code given below and click save.

<div id="s3slider"> <ul id="s3sliderContent"> <li class="s3sliderImage"><a href="YOUR-LINK-HERE"><img style="width:650px;height:300px;" src="http://3.bp.blogspot.com/-tOurbBkNj7E/UXiBWzhMTfI/AAAAAAAAAbU/E4DKGhUhaBI/s1600/screen1.jpg" /><span>Fish Dom 2</span></a></li> <li class="s3sliderImage"><a href="YOUR-LINK-HERE"><img style="width:650px;height:300px;" src="http://1.bp.blogspot.com/-K5ZykRVoJS8/UXiIBimb_1I/AAAAAAAAAbk/MR8hgQEzTVI/s1600/Mini+Racing+3D.jpg" /><span>Mini Racing 3D</span></a></li> <li class="s3sliderImage"><a href="YOUR-LINK-HERE"><img style="width:650px;height:300px;" src="http://2.bp.blogspot.com/-XroZ_f1BjW4/UXiMdUyxTzI/AAAAAAAAAb0/RZI2fkQGwMU/s1600/galaxy-life.jpg" /><span>Galaxy Life</span></a></li> <li class="s3sliderImage"><a href="YOUR-LINK-HERE"><img style="width:650px;height:300px;" src="http://3.bp.blogspot.com/-tOurbBkNj7E/UXiBWzhMTfI/AAAAAAAAAbU/E4DKGhUhaBI/s1600/screen1.jpg" /><span>Fish Dom 2</span></a></li> <li class="s3sliderImage"></li> </ul> </div> <div class='clear'></div>


NOTE : Replace YOUR-LINK-HERE and images with your content.
Now you have successfully installed this slide show to your site. 


Back to Featured Articles on Logo Paperblog