Start networking and exchanging professional insights

Register now or log in to join your professional community.

Follow

How to make auto slider ( banner ) with the easiest code using jquery and css ? with minimum codes ?

user-image
Question added by Deleted user
Date Posted: 2015/10/17
Aadil Dedmari
by Aadil Dedmari , IT Administrator & Programmer , Saudi Rubber Products Co.

You can use fancybox or lightbox for banner slider in an easiest way and with loads of transition effects

shweta tyagi
by shweta tyagi , Specialist - Backend Development , taqnia

With the help of bootstrap carousel, it will become very easy to draw auto slider.

http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_js_carousel2&stacked=h

jahanzaib siddiqui
by jahanzaib siddiqui , ERP system operator , Dawlance Private

<div id="slideshow"> <div> <img src="//farm6.static.flickr.com//_2bb7da9c_m.jpg"> </div> <div> <img src="//farm6.static.flickr.com//_ae4f_m.jpg"> </div> <div> Pretty cool eh? This slide is proof the content can be anything. </div> </div>

#slideshow { margin:px auto; position: relative; width:px; height:px; padding:px; box-shadow:px rgba(0,0,0,0.4); } #slideshow > div { position: absolute; top:px; left:px; right:px; bottom:px; }

$("#slideshow > div:gt(0)").hide(); setInterval(function() { $('#slideshow > div:first') .fadeOut() .next() .fadeIn() .end() .appendTo('#slideshow'); },);

Muhammad Tahir  Khan
by Muhammad Tahir Khan , Coordination Officer , Opal Enterprises Contracting Company

Its very easy and simple you can give that problem on google search. So you will find your solution with less of time. If you want to save your time then everything are available in Internet. Many types of Sliders you can possible your work easy. Such as wow slider, hi slider and so on.

 

this is very useful link u can lern from it 

https://css-tricks.com/snippets/jquery/simple-auto-playing-slideshow/

You can use carousel along with css and jquery and instantiate JQuery Carousel $("selector").carousel();

soheer aljarrah
by soheer aljarrah , trainee , SDK training center

  • $("#slideshow > div:gt(0)").hide();setInterval(function(){$('#slideshow > div:first').fadeOut(1000).next().fadeIn(1000).end().appendTo('#slideshow');},3000);--jquery

#slideshow {margin: 55px auto;position: relative;width:245px;height:245px;padding:11px;box-shadow: 1 120px rgba(0,0,0,0.4);}#slideshow > div {position: absolute;top: 11px;left:11px;right:11px;bottom:11px;

--css }

احمد سليمان  فايز  ابو معيلق
by احمد سليمان فايز ابو معيلق , مهندس مدني , الشركة المطروحة للعمل

Drafting some simple letters and words indicating the content

Javed Sindhi
by Javed Sindhi , Software Engineer , Finityloop

www.geeksforgeeks.org

ucan go for this web site

Ameer Abbas
by Ameer Abbas , JUNiOR SOFTWARE ENGiNEER , GOL Technologies (pvt)

First, create your slider :

<div id="slideshow"> <div> <img src="//farm6.static.flickr.com/5224/5658667829_2bb7d42a9c_m.jpg"> </div> <div> <img src="//farm6.static.flickr.com/5230/5638093881_a791e4f819_m.jpg"> </div> <div> You can also add some text. </div> </div>

Slides need to be absolutely positioned within the wrapper. Now do some CSS styling.

#slideshow { margin: 50px auto; position: relative; width: 240px; height: 240px; padding: 10px; box-shadow: 0 0 20px rgba(0,0,0,0.4); } #slideshow > div { position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px; }

 

Run after DOM is ready.

JQuery:

$("#slideshow > div:gt(0)").hide(); setInterval(function() { $('#slideshow > div:first') .fadeOut(1000) .next() .fadeIn(1000) .end() .appendTo('#slideshow'); }, 3000);

 

 

rabeh belalmi
by rabeh belalmi , ملحق بالمخبر , وزارة التربية و التعليم الجزائرية

How to make auto slider ( banner ) with the easiest code Is the element :marquee 

 

 

More Questions Like This

Do you need help in adding the right keywords to your CV? Let our CV writing experts help you.