jquery ile farenin üzerinde divs yinelenen göstermek nasıl?

0 Cevap php

Örneğin ive gibi bir div var:

<div class="y1">
<img src="i/o.png" />
</div>

ve

<!-- pre load -->
<div class="p1" style="display:none">
<h5 class="ob">Title</h5>
<img class="ob" src="i/ob.png" />
<small class="ob">Description</small>
<a href="#" class="oyna">PLAY</a>
</div>

ve this jquery

<script type="text/javascript">

$("div.y1").hover(
  function () {
    $('div.p1').slideDown('slow', function() {
  });
  }
);
</script>

my question is how can i repeat it for 12 times. i mean when i hover on y1, show p1, y2 => p2, y3 => p3 ... y12 => p12. i hope you guys understve me. thank you so much!!!!

0 Cevap