首页 > Web开发 > 详细

html实战1--调色板

时间:2021-02-16 23:11:19      阅读:28      评论:0      收藏:0      [点我收藏+]

调色板
1.实现页面布局
2.绑定事件

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Document</title>
	<style>
		/* 清除默认样式*/
		*{
			margin: 0;
			padding: 0;

		}
		#box{
			width:200px;
			height: 200px;

			background-color: black;
		}
	</style>
	<script src=‘js/jquery.js‘></script>
</head>
<body>
	<header>
		<header id=‘box‘></header>
		<p>
			R: <input type="range" min=‘0‘ max=‘255‘ value=‘0‘><span>0</span>
		</p>
		<p>
			G: <input type="range" min=‘0‘ max=‘255‘ value=‘0‘><span>0</span>
		</p>
		<p>
			B: <input type="range" min=‘0‘ max=‘255‘ value=‘0‘><span>0</span>
		</p>
	</header>
</body>
</html>
<script>
	var json = {
		r:0,
		g:0,
		b:0
	}
	$(‘input:eq(0)‘).on(‘input‘,function(){
		$(this).siblings().html($(this).val());
		json.r = $(this).val();
		$(‘#box‘).css({
			‘background‘:`rgb(${json.r},${json.g},${json.b})`
		})
	})
	$(‘input:eq(1)‘).on(‘input‘,function(){
		$(this).siblings().html($(this).val());
		json.g = $(this).val();
		$(‘#box‘).css({
			‘background‘:`rgb(${json.r},${json.g},${json.b})`
		})
	})
	$(‘input:eq(2)‘).on(‘input‘,function(){
		$(this).siblings().html($(this).val());
		json.b = $(this).val();
		$(‘#box‘).css({
			‘background‘:`rgb(${json.r},${json.g},${json.b})`
		})
	})
</script>

技术分享图片

html实战1--调色板

原文:https://www.cnblogs.com/tingshu/p/14407211.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!