实验步骤
1.创建一个1-33的红色球号码区数组,并随机取出6个号码;
2.创建一个1-16的蓝色球号码区数组,并随机取出1个号码;
3.显示输出机选的红色球号码和蓝色球号码。
运行效果
html,css代码
<html><head></head><style>.box1 { width: 820px; height: 200px; /* border: 2px dashed #000; */margin: 0auto; /* background-color: #ddd; */ } h1 { text-align: center; margin-bottom: 50px; margin-top: 30px; } button { float: right; width: 100px; height: 40px; margin-top: 30px; font-size: 16px; color: #fff; cursor:hand; background-color: #000000; } button:hover { background-color: white; color: #000; transition: .8s; } .bb/* 蓝球样式 */ { display: inline-block; background: blue; border-radius: 100%; height: 100px; width: 100px; text-align: center; line-height: 100px; font-size: 50px; color: #fff; font-weight: bold; background: radial-gradient(circleat70%30%,blue0%,black120%); } .rb/* 红球样式 */ { display:inline-block; background: red; border-radius: 100%; height: 100px; width: 100px; text-align: center; line-height: 100px; font-size: 50px; color:#fff; font-weight: bold; margin-right: 20px; background: radial-gradient(circleat70%30%,red0%,black120%); } </style><body><h1>双色球效果实现</h1></body></html>
php代码
header("content-type:text/html;cahrset=utf-8"); echo' <div class="box1">'; $b1=range(1,33); $b2=rand(1,16); $num=array_rand($b1,6); shuffle($num); for($i=0;$i<count($num);$i++) { $value=$b1[$num[$i]]; if($value<10) //让'1-9'以'01-09'的方式输出 { $str='0'; $value=$str.$value; } echo'<div class="rb">'.$value.'</div>'; } if($b2<10) //让'1-9'以'01-09'的方式输出 { $str='0'; $b2=$str.$b2; } } echo'<div class="bb">'.$b2.'</div>'; echo'<button onclick="fresh()" >重新摇号</button>'; echo'<script>function fresh() {location.reload();};</script>'; echo'</div>';
PHP range() 函数
range() 函数创建一个包含指定范围的元素的数组。
PHP array_rand() 函数
array_rand() 函数返回数组中的随机键名,或者如果您规定函数返回不只一个键名,则返回包含随机键名的数组。
PHP shuffle() 函数
shuffle() 函数把数组中的元素按随机顺序重新排列。
PHP rand() 函数