ページで使用する2つのサイクル関数があります。数分間動作した後、動作を停止します。
スクリプト1:
<script type='text/javascript'>
function pageLoad(sender, args){$('#Vertical').cycle({
fx: '" + Effect + "'
,sync: 0,
prev:'#Verticalprev',
next:'#Verticalnext'
if (Easing != "0")
,easing: '" + Easing + "'
});
//On mouseover pause the slider
$('#Vertical').mouseover(function() {
$('#Vertical').cycle('pause');
return false;
});
//On mouseout start the slider
$('#Vertical').mouseout(function() {
$('#Vertical').cycle('resume');
});
}</script>
スクリプト2:
<script type='text/javascript'>
function pageLoad(sender, args){$('#Horizontal').cycle({
fx: '" + Effect + "'
,sync: 0,
prev:'#prev',
next:'#next'
if (Easing != "0")
,easing: '" + Easing + "'
});
//On mouseover pause the slider
$('#Horizontal').mouseover(function() {
$('#Horizontal').cycle('pause');
return false;
});
//On mouseout start the slider
$('#Horizontal').mouseout(function() {
$('#Horizontal').cycle('resume');
});
}</script>
誰かがこれを手伝ってくれる?