görsel satır efekti(Visual MouseOver Rows in)

debreli

OpenCart-TR
Katılım
31 Ağu 2010
Mesajlar
196
Tepkime puanı
0
Puanları
0
Web sitesi
vakifshop.com
1299279079.sample1-200x200.jpg


version:v1.4.9.3

admin sayfası için hazırlanmış satırlara görsel efekt veriyor.
admin/view/template/common/footer.tpl aç

Kod:
</body></html>

öncesine ekle
Kod:
<!-- bof_xsi: add mouseover on admin list -->
<script type="text/javascript">
$(document).ready(
  function(){
    $('.list tr:even').mouseover(function() {
      $(this).css("background-color", "#cccccc"); 
    }).mouseout(function(){
      $(this).css("background-color", "#F4F4F8"); 
    });
    
    $('.list tr:odd').mouseover(function() {
      $(this).css("background-color", "#cccccc"); 
    }).mouseout(function(){
      $(this).css("background-color", ""); 
    });
});
</script>
<!-- eof_xsi: add mouseover on admin list -->
 

sekhil

OpenCart-TR
Katılım
28 Nis 2011
Mesajlar
100
Tepkime puanı
0
Puanları
0
1.5.1.3 de nasıl verebiliriz bu efekti denedim aynı kodu ama olmadı
 
Üst