有没有办法用PHP代码更改每个滚动的大小。 说明:当我向下滚动它向下x(50~)像素时,我想将x更改为20。
编辑:这是我的代码......
<html>
<head><link rel="icon" href="Images/Excel.png"><title>Excel</title></head>
<body bgcolor="9EB6CE" style="margin:0;width:3354"><?php
print"<input src='Images\\0.png' type='image'>";
$i=1;
while($i<=26){
print"<input src='Images\\".chr(64+$i).".png' type='image'>";
$i++;
}
$i=1;
while($i<=26){
print"<input src='Images\\A".chr(64+$i).".png' type='image'>";
$i++;
}
$i=1;
$j=1;
while($i<=100){
print "<input src='Images\\".$i.".png' type='image'>";
while($j<=52){
print"<input src='Images\\Cell.png' type='image'>";
$j++;
}
$j=1;
$i++;
}
?></body>
</html>
答案 0 :(得分:0)
不在php中,因为是服务器端。但是在javascript中你有一个解决方案: