1

I try integratte kwicks slider (like image gallery) into mainpage of site (See dev.podmoscvoy.ru) But after redraw ul>li (with image) i have not any reaction. Used last kwicks version code.

Code is standart for kwicks

<div id="metaslider_container_99">
    <div id="metaslider_99" class="kwicksslider">
        <ul class="kwicks kwicks-horizontal" style="width:700px;height:400px">
            <li >here is image definition</li>
           <li >here is image definition</li>
            <li >here is image definition</li>
        </ul>
    </div>
</div>

code JS

$(function() {
      $('#metaslider_99>ul.kwicks').kwicks({ 
         behavour:'menu'
      });
});

No javascrip errors, but kwicks not played. Please help

alessandrio
  • 4,282
  • 2
  • 29
  • 40
Toologic
  • 11
  • 4
  • Try doing this in jsbin.com or jsfiddle.net to reproduce the problem. More people can help that way. – Sukima Oct 01 '14 at 20:24
  • I try to reproduce my situation on JSFiddle. You can see it on [link](http://jsfiddle.net/he9kmpzd/12/) It is same - images draw with correct size, UL have a new class kwicks-processed but it is all. Not reaction on mouse, not animation :( – Toologic Oct 01 '14 at 21:03

2 Answers2

0

Try adding class="kwicks-selected" to the first <li> element.

Sukima
  • 9,965
  • 3
  • 46
  • 60
0

You have a typo (опечатка, в общем :)). I'm talking about example of the code at fiddle and in your question..

behavior: 'slideshow'

not

behavour: 'slideshow'
Cheery
  • 16,063
  • 42
  • 57