0
我使用的是Remy Sharps跑馬燈插件。我試圖找出是否可以在用戶按下按鈕時啓動/停止選取框。在頁面上有一些演示代碼,但它在插件本身內。Remy Sharp的Jquery跑馬燈用法
http://remysharp.com/2008/09/10/the-silky-smooth-marquee/
感謝
我使用的是Remy Sharps跑馬燈插件。我試圖找出是否可以在用戶按下按鈕時啓動/停止選取框。在頁面上有一些演示代碼,但它在插件本身內。Remy Sharp的Jquery跑馬燈用法
http://remysharp.com/2008/09/10/the-silky-smooth-marquee/
感謝
嘗試分配勞斯萊斯對象到一個全局變量,然後觸發啓動/停止它。
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="jquery.marquee.js" type="text/javascript"></script>
<script>
var marque;
$(function() {
marque= $('div.demo marquee').marquee('pointer');
});
function startmqr() {
$(marque).trigger('start');
}
function stop() {
$(marque).trigger('stop');
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div class="demo">
<h2>
Vanilla</h2>
<pre><code><marquee behavior="scroll" scrollamount="1" direction="left" width="350"></code></pre>
<marquee behavior="scroll" direction="left" scrollamount="2" width="350"><p>START Lorem ipsum dolor sit amet END</p></marquee>
</div>
<input id="Button1" type="button" value="start" onclick="startmqr()" />
<input id="Button2" type="button" value="stop" onclick="stop()" />
</form>
</body>
</html>
問候