|
|
|
ใครพอมี js ที่ไล่ตัวอักษร 1-10 มาเเล้วหยุด อยู่ตัวที่เราตั้งไว้มั้งครับ |
|
|
|
|
|
|
|
ขยายความหรือ Ex. มาให้ดูหน่อยก็ดีครับ ถ้าบอกมาอย่างนี้ ก็ไม่ค่อยเข้าใจกันเท่าไรหรอกครับ
|
|
|
|
|
Date :
2013-08-13 12:15:48 |
By :
test |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทษครับ ทำให้เลขเปลี่ยนแบบนี้อ่ะ
|
|
|
|
|
Date :
2013-08-13 14:44:53 |
By :
aibot |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เรียบร้อยค่ะ http://jsfiddle.net/GQzEk/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
<style type="text/css">
input.rand{
width:15px;
padding:0px;
text-align:center;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
var ID,d1,d2,d3;
var box1 = $("#digit1"),
box2 = $("#digit2"),
box3 = $("#digit3");
$("input#rolldice").toggle(function(){
ID = setInterval(function(){
d1 = Math.floor(Math.random()*10);
d2 = Math.floor(Math.random()*10);
d3 = Math.floor(Math.random()*10);
box1.val(d1);
box2.val(d2);
box3.val(d3);
},100);
},function(){
clearInterval(ID);
});
});
</script>
<input type="text" id="digit1" class="rand" value=0 />
<input type="text" id="digit2" class="rand" value=0 />
<input type="text" id="digit3" class="rand" value=0 /><br />
<input type="button" id="rolldice" value="หมุน-หยุดตัวเลข" />
|
ประวัติการแก้ไข 2013-08-13 16:32:39
|
|
|
|
Date :
2013-08-13 15:51:19 |
By :
survivor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะให้มันหมุนซัก 5 วิ เเล้ว หยุด ต้องแก้ยังไงหรอครับ
เเต่ขอบคุณมากนะครับ
|
ประวัติการแก้ไข 2013-08-13 21:13:05 2013-08-13 21:15:58
|
|
|
|
Date :
2013-08-13 20:57:20 |
By :
aibot |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โหยเก่งจังครับ
แล้วถ้าผมจะให้มันออกเลข 5,8,8 (กำหนดไว้เเล้ว) ต้องแก้ยังไงอีกหละครับทีนี้
แต่เลข 5,8,8 นี้ได้มาจาก
<?
$slot1 = "5" ;
$slot2 = "8" ;
$slot3 = "8" ;
?>
ครั้งสุดท้ายเเล้วครับขอบคุณมากจริงๆจากใจ
|
ประวัติการแก้ไข 2013-08-13 22:14:49 2013-08-13 22:22:16
|
|
|
|
Date :
2013-08-13 22:13:53 |
By :
aibot |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5,8,8 ได้มาจาก
<?php
$slot1 = "5" ;
$slot2 = "8" ;
$slot3 = "8" ;
?>
|
|
|
|
|
Date :
2013-08-13 22:42:14 |
By :
aibot |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กำผมใส่ไปแบบนี้เลยไม่รู้ถูกไหม แต่ไม่กวนเเล้วหละครับขอบคุณมาก
Code (PHP)
<?
$t1 = "1";
$t2 = "1";
$t3 = "1";
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<title>Untitled Document</title>
<style type="text/css">
input.rand{
width:15px;
padding:0px;
text-align:center;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
var ID,d1,d2,d3;
var box1 = $("#digit1"),
box2 = $("#digit2"),
box3 = $("#digit3"),
final1 = <?=$t1?>,
final2 = <?=$t2?>,
final3 = <?=$t3?>;
$("input#rolldice").click(function(){
ID = setInterval(function(){
d1 = Math.floor(Math.random()*10);
d2 = Math.floor(Math.random()*10);
d3 = Math.floor(Math.random()*10);
box1.val(d1);
box2.val(d2);
box3.val(d3);
},50);
setInterval(function(){
box1.val(final1);
box2.val(final2);
box3.val(final3);
clearInterval(ID);
},4000);
});
});
</script>
</head>
<body>
<input type="text" id="digit1" class="rand" value=0 />
<input type="text" id="digit2" class="rand" value=0 />
<input type="text" id="digit3" class="rand" value=0 /><br />
<input type="button" id="rolldice" value="หมุน-หยุดตัวเลข" />
</body>
</html>
|
ประวัติการแก้ไข 2013-08-13 22:49:37
|
|
|
|
Date :
2013-08-13 22:45:56 |
By :
aibot |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คิดว่าน่าจะใช้แบบนี้ค่ะ
<script type="text/css">
$(document).ready(function(){
var ID,d1,d2,d3;
var box1 = $("#digit1"),
box2 = $("#digit2"),
box3 = $("#digit3"),
final1 = <?php echo $slot1;?>,
final2 = <?php echo $slot2;?>,
final3 = <?php echo $slot3;?>;
$("input#rolldice").click(function(){
ID = setInterval(function(){
d1 = Math.floor(Math.random()*10);
d2 = Math.floor(Math.random()*10);
d3 = Math.floor(Math.random()*10);
box1.val(d1);
box2.val(d2);
box3.val(d3);
},50);
setInterval(function(){
box1.val(final1);
box2.val(final2);
box3.val(final3);
clearInterval(ID);
},4000);
});
});
น่าจะไม่ยากเกินความพยายามค่ะ
|
ประวัติการแก้ไข 2013-08-13 22:53:29
|
|
|
|
Date :
2013-08-13 22:48:24 |
By :
survivor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|