jQueryのサイクルのプラグインの質問 - それはURLに行くように、写真への相対リンク消灯

StackOverflow https://stackoverflow.com/questions/2338387

  •  22-09-2019
  •  | 
  •  

質問

私はjQueryのサイクルのプラグインを使用していますし、それが写真のようにハイライトを変更し、私は、テキストをクリックすると、現在、関連する写真は、私がURLに行くために写真をクリックする必要がありますが、私は希望、その後引き上げることをサイドパネルを持っていますURLへのリンクにテキストそのもののよう。私はfn.cycle.defaults見てきましたが、確かに何を変更しないと、私はいくつかのことが、何も作品を試してみました。誰も私がこれを理解することができた場合には、最も参考になります。ここでfn.cycle.defaultsがあります:

fx:           'fade', // one of: fade, shuffle, zoom, scrollLeft, etc
timeout:       4000,  // milliseconds between slide transitions (0 to disable auto advance)
continuous:    0,     // true to start next transition immediately after current one completes
speed:         1000,  // speed of the transition (any valid fx speed value)
speedIn:       null,  // speed of the 'in' transition
speedOut:      null,  // speed of the 'out' transition
next:          null,  // id of element to use as click trigger for next slide
prev:          null,  // id of element to use as click trigger for previous slide
prevNextClick: null,  // callback fn for prev/next clicks:  function(isNext, zeroBasedSlideIndex, slideElement)
pager:         null,  // id of element to use as pager container
pagerClick:    null,  // callback fn for pager clicks:  function(zeroBasedSlideIndex, slideElement)
pagerEvent:    null, // event which drives the pager navigation
pagerAnchorBuilder: null, // callback fn for building anchor links
before:        null,  // transition callback (scope set to element to be shown)
after:         null,  // transition callback (scope set to element that was shown)
end:           null,  // callback invoked when the slideshow terminates (use with autostop or nowrap options)
easing:        null,  // easing method for both in and out transitions
easeIn:        null,  // easing for "in" transition
easeOut:       null,  // easing for "out" transition
shuffle:       null,  // coords for shuffle animation, ex: { top:15, left: 200 }
animIn:        null,  // properties that define how the slide animates in
animOut:       null,  // properties that define how the slide animates out
cssBefore:     null,  // properties that define the initial state of the slide before transitioning in
cssAfter:      null,  // properties that defined the state of the slide after transitioning out
fxFn:          null,  // function used to control the transition
height:       'auto', // container height
startingSlide: 0,     // zero-based index of the first slide to be displayed
sync:          1,     // true if in/out transitions should occur simultaneously
random:        0,     // true for random, false for sequence (not applicable to shuffle fx)
fit:           0,     // force slides to fit container
pause:         true,     // true to enable "pause on hover"
autostop:      0,     // true to end slideshow after X transitions (where X == slide count)
autostopCount: 0,     // number of transitions (optionally used with autostop to define X)
delay:         0,     // additional delay (in ms) for first transition (hint: can be negative)
slideExpr:     null,  // expression for selecting slides (if something other than all children is required)
cleartype:     0,     // true if clearType corrections should be applied (for IE)
nowrap:        0      // true to prevent slideshow from wrapping
};

私はpageClickとpagerEventを変更しようとしたが、何も動作しているようだありません。助けてください!!!

役に立ちましたか?

解決

グラブプラグインの最新バージョンと、あなたは真の「allowPagerClickBubble」オプションを設定することができます。

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top