Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想按顺序排列三个图像。所有这些都必须具有浏览器窗口的完整宽度(宽度:100%),但每个图像都必须具有自己的随机宽度。这应该在每次重新加载时随机生成新的。
有人能帮我吗?
多谢
我认为你必须有一些最小和最大宽度;
像这样的东西会起作用
var cell1 = randomNum(20,40); var cell2 = randomNum(20,40); var cell3 = 100 - cell1 - cell2; function randomNum (min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; }
这将为您提供加起来为 100 的百分比