python/Day21-30/code/new/web1901/js/hello.js
2024-12-04 00:04:56 +08:00

7 lines
198 B
JavaScript

function randomColor(opacity=1) {
let r = parseInt(Math.random() * 256)
let g = parseInt(Math.random() * 256)
let b = parseInt(Math.random() * 256)
return `rgba(${r}, ${g}, ${b}, ${opacity})`
}