0

I have a strange problem with the Jquery plugin Flexslider. When there is a change from one slide to the next (only in the mobile version, viewport <480) all other elements seem to shake. This problem started when I added to the page a script for the mobile responsive menu using Modernizr, but I would not know what the problem is. The test site is http://private2.portalesardegna.com

and this is the reference for the mobile menu script http://coding.smashingmagazine.com/2013/01/15/off-canvas-navigation-for-responsive-website/

4

1 に答える 1

0

2つのdivがあるからだと思います

<div id="outer-wrap">
<div id="inner-wrap">

すべてのページ要素が含まれているため、モバイルメニューに必要ですが、画像を移動するすべてのjqueryスクリプト(ホームページのflexsliderとホテルの詳細ページの画像ギャラリー)がすべてのコンテンツを揺るがします。iPhoneでサイトをテストしました。そしてサファリと...

それらのdivに適用されるcssは

#outer-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#inner-wrap {
  position: relative;
  width: 100%;
}
于 2013-02-07T07:55:25.727 に答える