<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>背景颜色渐变方向变换</title>
<style>
body {
height: 100vh;
margin: 0;
transition: background 0.5s;
}
</style>
</head>
<body>
<script>
let direction = 'to right';
document.body.onclick = () => {
document.body.style.background = `linear-gradient(${direction}, #ff9a9e, #fad0c4)`;
direction = direction === 'to right' ? 'to bottom' : 'to right';
};
// 初始化背景
document.body.click();
</script>
</body>
</html>
运行截图
点击后变换渐变方向