0
Can you do a css Transition, all triggered by the same element, but with different values? CSS:
.co-la {
background: none repeat scroll 0 0 green;
height: 25px;
left: -37px;
margin: 0;
width: 0%;
}
#skills:hover .co-la > .html{width:87%; }
#skills:hover .co-la > .css{width: 80%}
#skills:hover .co-la{transition:width 1s;}
HTML:
<div id="secs">
<div class="co-be"><div class="co-la html"></div><h4>HTML 5</h4></div>
<p>87%</p>
</div>
<div id="secs">
<div class="co-be"><div class="co-la css"></div><h4>CSS 3</h4></div>
<p>80%</p>
</div>
Hmm... I don’t quite understand what you want. Where is the
skills
in your HTML? You have duplicated Ids, this gives invalid HTML. Can explain better, perhaps by giving an example of the functionality you want?– Sergio
I get it.. I’ll see if I can get something, because I need something similar too.
– Daniel Omine
The answer below is what I was looking for?
– Sergio