Coin Slider: Image Slider with Unique Effects

After jqFancyTransitions I decided to release new jQuery image slider plugin with more unique transitions effects. I have ideas for new effects and after I didn’t find that somebody already implement that I create Coin Slider.

coin-slider

Thanks to you and your comments Coin Slider have lot of features that jqFancyTransitions didn’t have at the beginning.  Basically it’s a latest (and improved) version of jqFancyTransitions but with new ‘fancy’ transitions effects.

jqFancyTransitions slice your images in stripes, while Coin Slider slice them in squares. And that’s the main difference. With changing order of appearing those squares I achieve random, swirl, rain and straight effects.

While I was working on this I felt like I’m on college again. Creating order of squares appearance remind me on my college projects when I spent few night and days trying to solve some problem. Random and straight was simple, but swirl effect give me some trouble. Fortunately, I’m working with Milos Popovic who like to solve those kind of problems and he help me about swirl function. Kudos to Milos!

For rain effect I spent few rainy hours to built it and that’s why I gave him that name. Naming things is something that I’m not good at.

How to use

Download jQuery, Coin Slider javascript file and CSS file and include them on your page:

<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javascript" src="coin-slider.min.js"></script>
<link rel="stylesheet" href="coin-slider-styles.css" type="text/css" />

Add slider content and create one div with an id and put images and image descriptions, similar to:

<div id='coin-slider'>
	<a href="img01_url" target="_blank">
		<img src='img01.jpg' >
		<span>
			Description for img01
		</span>
	</a>
	......
	......
	<a href="imgN_url">
		<img src='imgN.jpg' >
		<span>
			Description for imgN
		</span>
	</a>
</div>

At the end all you have to do is to call Coin Slider:

<script type="text/javascript">
	$(document).ready(function() {
		$('#coin-slider').coinslider();
	});
</script>

Example

Coin Slider have a lot of options for helping you set slider as you want. If you want to have 900px wide slider, without navigation and with 5sec delay between images you’ll do this:

<script type="text/javascript">
	$(document).ready(function() {
		$('#coin-slider').coinslider({ width: 900, navigation: false, delay: 5000 });
	});
</script>

List of all options

width: 565, // width of slider panel
height: 290, // height of slider panel
spw: 7, // squares per width
sph: 5, // squares per height
delay: 3000, // delay between images in ms
sDelay: 30, // delay beetwen squares in ms
opacity: 0.7, // opacity of title and navigation
titleSpeed: 500, // speed of title appereance in ms
effect: '', // random, swirl, rain, straight
navigation: true, // prev next and buttons
links : true, // show images as links 
hoverPause: true // pause on hover

Notes

Be careuful with spw and sph because large numbers can cause transitions problems.
If you don’t set effect all effects will be implemented by random.

Check the demo of ‘The More Awesome jQuery Image Slider’

  • Bigshark – larger buttons on Grooveshark (0)
    GrooveShark is one of the web services which I’m using on daily basis. Actually, I have one computer which I use only to play music from my GrooveShark playlists, while I’m sitting on […]
  • Twitter Flock for Wordpress: multiple accounts tweets with style (69)
    Twitter Flock is Wordpress plugin for showing multiple accounts tweets with different color scheme for every account. Also, there are setting allowing you to control how your tweets will […]
  • Image gallery with fancy transitions effects (1034)
    I was looking all over the Internet for some jQuery gallery plugin with some interesting transition effects. I found a lot of great plugins but they all have pretty same transition […]
  • jqBarGraph – jQuery graph plugin (157)
    jqBarGraph is jQuery plugin that gives you freedom to easily display your data as graphs. There are three types of graphs: simple, multi and stacked. All you have to do is to pass your […]
  • jQuery Snow Falling plugin (114)
    I like winter because of holidays and snow. Not big fan of going to shopping and buying New Year gifts and presents, but I am fan of snow and snowboarding. That's why I enjoy watching how […]

1,638 comments on "Coin Slider: Image Slider with Unique Effects"

how i can change the image width, height

juan on May 21, 2013 at 10:39 am

i want to know how can i change the width and the height of image in tje js file
thanks

karim on May 20, 2013 at 8:17 am

Hi friends!!!

I want to do one question about the Coin Slider. Woul be possible insert a video (flowplayer) inside it?

Thanks so much and have a nice weekend.

Jose on May 17, 2013 at 7:35 am

I have been trying to add .jpg images but it only shows blank, no image appears, can you help me?
Thanks

Altius Coaching

Description for img01


Description for imgN

$(‘#coin-slider’).coinslider({ width: 560, height:300, navigation: true, delay: 5000 });

SAVELLA on May 14, 2013 at 9:14 pm

Great slider, but i have a little problem. I need in hover event to change the position if the image. For example No hover the image is gray, in hover the image is colorfull. Any clue? I see the js but my efforts are not good enough. Thanks very much!

bryan on May 13, 2013 at 7:52 pm

Dear All!

Is it possible to use different delay between images?
Thank you in advance!

Zedtaylor on May 13, 2013 at 9:57 am

Hi all:
I’m very new at this so pardon my ignorance.

I want to install coinslider on a magento CE (not Magento GO) installation. My confusion is where precisely do I put the various coinslider files, and from where do I call them? Also, I’ll need to incorporate jquery no-conflict into the routine.

I have seen many conflicting instructions across the web. I hope someone can offer a definitive answer to my question. Again I apologize for being so ‘nooby’ but this has baffled me for hours, and I hope to get a definitive answer.

Thanks in advance,
Markz

markz on May 9, 2013 at 5:39 pm

Hello,
First off I wanted to say thank you for this awesome, simple to use Jquery slideshow script! It works so incredibly well, is easy to customize, and you guys aren’t out to make a buck off of it like other stupid slideshows out there.

Second, to help some users on here. @Rob, no you cannot use this with flash/embedded media/youtube videos. Media like videos cannot be manipulated by HTML/CSS. I’ve done a similar thing for a job with YouTube videos and the only thing you can really do is hide the DIV videos are in, you can’t really do any fancy animation.

Ed on May 6, 2013 at 8:47 pm

@Tom That’s possible with latest version from GitHub
@Rob Coin Slider doesn’t supports videos
@Jeff It’s just CSS, you can see source on demo page

Lazarevic Ivan on May 4, 2013 at 5:43 am

I really like the look of “The More Awesome Jquery Image Slider”. Is this version available, or is it just a matter of styling it?

Jeff on May 3, 2013 at 5:16 pm

Can I embed YouTube videos? If so, how?

Rob on May 3, 2013 at 5:21 am

Hi, can anyone tell me how to fix the image size as 100% in slider div. I tried by giving the background-size: 100% 100% and background-repeat: no-repeat, the size of the image is stretched fully in the div but the navigation link and the slider effect is not shown.

Thanks in advance…!

Mariyappan on April 28, 2013 at 9:12 pm

Hello,
I try to use the slider with pictures with transparent regions but when slide is changed i see the previous under the current one. How to hide the previous slide after affect end.

Darius

Darius on April 28, 2013 at 4:01 pm

I was wondering if there was a way to make the caption bar/ background color transparent by lowering the opacity, but the caption text and everything on the caption bar have 100% opacity.

Alyssa on April 24, 2013 at 1:43 pm

Is it possible to remove an Transition effects?
Have an small transition PC (formfactor like an USB Stick) with android and it stucks a lot. As we don’t need any effects it would be great to remove them. I tried use: “effect: false” but still have an smooth transition effect between the images.

Peter on April 24, 2013 at 8:13 am

Hello there, awesome slider I much appreciate the work put into this, I had to use padding to move the slider to where I wanted on my webpage, however I lost my next text on the navigation. Is there any way to get rid of the prev/next on the navigation without getting rid of the squares option on the bottom? Or a way I can find to place “next” back on my navigation? Thank you

Tom on April 23, 2013 at 11:54 pm

just testing this slider out for a new website and im having an issue with the slides scaling or auto scaling the images. what am i missing to match the file size or have the slider scale the images to autofit into the slides.
Thanks.

Joshua on April 22, 2013 at 2:31 pm

Please, can one use images of different sizes with this? and if possible can you please give me a detailed description of how to go about it.

whales on April 22, 2013 at 8:13 am

it is fixed on the image size.how to change the image width and hight?

vim on April 16, 2013 at 4:01 pm

can it be responsive? because i want to open this gallery in my mobile.

harish on April 15, 2013 at 5:38 am

how can i adjust the size of the title bar

moussa on April 13, 2013 at 8:09 pm

Hi
I have problem. When zoom in or zoom out web browser only on Mac OS ( Mountain Lion ) Slider have lines ( intersection ). Any solution ?

Sebastian on April 11, 2013 at 2:40 am

Does anyone know how can I replace the navigation text “prev” and “next” with arrow images?

Jermin Hu on April 10, 2013 at 10:59 pm

Leave a Reply

Your email address will not be published. Required fields are marked *