1
I have one more question here on the forum rs. I created a css framework, made a slider with input radio + label but had not put animation (change from second to second between them).
But only q now (using it on a client) I saw that it was very annoying because this static having to the person click on the arrows to change imgs
I wanted to do the animation with CSS3, but I couldn’t do the animation. If anyone knows how to do in CSS3 or Jquery could help me.
<div id="slider" class="slider-danger">
<input name="slider" id="slider1" type="radio">
<input name="slider" id="slider2" type="radio">
<input name="slider" id="slider3" type="radio">
<input name="slider" id="slider4" type="radio">
<input name="slider" id="slider5" type="radio" checked="checked">
<article id="slide1">
<img src="imgs/slider/sliderimg1.jpg">
</article>
<article id="slide2">
<img src="imgs/slider/sliderimg2.jpg">
</article>
<article id="slide3">
<img src="imgs/slider/sliderimg3.jpg">
</article>
<article id="slide4">
<img src="imgs/slider/sliderimg4.jpg">
</article>
<div id="controls">
<label for="slide1" class="arrows"></label>
<label for="slide2" class="arrows"></label>
<label for="slide3" class="arrows"></label>
<label for="slide4" class="arrows"></label>
<label for="slide5" class="arrows"></label>
</div>
The framework is this: https://github.com/TwoSheep/blackcat An example of it in use is this: spflbrasil.com
What I want is to change check on the radio input from second to second. I know it gives to change . ckecked in jquery, but could not mount for more than two checked.
Someone could help me?
Dude, are there two questions? You want to mount a slider (changing checked every second) or you want CSS3 animation?
– Daniel
Just one question. The slide is already ready (structure I put), I just want by jquery to change the correct checked order second).
– AntonioSantos