Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

随机获取颜色值 #2

Open
lvleihere opened this issue Nov 16, 2018 · 1 comment
Open

随机获取颜色值 #2

lvleihere opened this issue Nov 16, 2018 · 1 comment

Comments

@lvleihere
Copy link
Owner

const getRandomColor = () => `#${(~~(Math.random() * (1<<24))).toString(16)}`;
@lvleihere
Copy link
Owner Author

给页面圈上颜色

document.querySelectorAll('*').forEach(el => {
	el.style.boxShadow = `0 0 5px ${getRandomColor()}`;
	el.style.borderRadius = '5px';
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant