账号密码本地记录页面:修改了输入框和按钮样式,添加后清空输入框

文章描述了一个HTML页面,展示了如何使用JavaScript和localStorage来保存和检索用户的账号密码,以及提供搜索功能。设计包括输入框、按钮和表格,用于添加、查看和管理密码数据。
摘要由CSDN通过智能技术生成

<!DOCTYPE html>
<html lang="zh-CN">
<head>
	<meta charset="UTF-8" />
	<meta http-equiv="X-UA-Compatible" content="IE=edge" />
	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
	<title>账号密码本地保存页面</title>
</head>
<style>
	* {
		/*所有的标签都有的属性遵循的统一样式*/
		padding: 0;
		margin: 0;
		/* 文字禁止选中 */
		user-select: none;
		/* 盒子模型 */
		box-sizing: border-box;
		color: #fcf9f9;
		text-shadow: 1px 1px 1px #100000;
	}
	body {
		background-color: #144756;
	}
	/* 弹性布局 */
	h2 {
		width: 190px;
		height: 47px;
		margin: 0 50px;
		padding: 2px 10px;
		border-radius: 50%;
		background: rgb(255, 0, 0);
		text-align: center;
		background-image: linear-gradient(to top left,
				rgba(0, 0, 0, 0.2),
				rgba(0, 0, 0, 0.2) 30%,
				rgba(0, 0, 0, 0));
		box-shadow: inset 4px 4px 4px rgba(255, 255, 255, 0.6),
			inset -4px -4px 5px rgba(0, 0, 0, 0.6);
		text-shadow: 0px 1px 0px #999,
			0px 2px 0px #888,
			0px 3px 0px #777,
			0px 4px 0px #666,
			0px 5px 0px #555,
			0px 6px 0px #444,
			0px 7px 0px #333,
			0px 8px 7px #001135;
		img {
			float: left;
			width: 66px;
			height: 66px;
			border-radius: 50%;
			transition: transform 0.3s ease;
			&:hover {
				transform: scale(1.2);
			}
		}
	}
	.search_text {
		margin: 2px 230px;
		input {
			border-radius: 50px;
			height: 45px;
			box-shadow: 0px 0px 24px rgba(253, 253, 253, 0.333);
		}
		button {
			position: absolute;
			top: 50px;
			left: 432px;
			height: 42px;
			border-radius: 0 50px 50px 0;
		}
	}
	form {
		/* 弹性布局 */
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 30px;
		left: 520px;
		input:nth-child(1) {
			border-radius: 48px 48px 0 0;
			box-shadow: 0px 0px 24px rgba(253, 253, 253, 0.333);
		}
		input:nth-child(2) {
			border-radius: 0 0 48px 48px;
			box-shadow: 0px 0px 24px rgba(255, 255, 255, 0.333);
		}
		input {
			padding: 16px 52px 16px 35px;
			border: none;
			outline: none;
			box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
			width: 100%;
			font-size: 16px;
			color: #fffafa;
		}
		button {
			position: absolute;
			top: 1px;
			left: 169px;
			width: 60px;
			padding: 2px;
			height: 60px;
			border-radius: 50%;
			font-size: 60px;
			.plus {
				display: block;
				width: 100%;
				height: 100%;
				background: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
				background-size: 50% 2px, 2px 50%;
				background-position: center;
				background-repeat: no-repeat;
			}
		}
	}
	::placeholder {
		color: #ffe605;
	}
	#delete {
		position: absolute;
		height: 45px;
		top: 49px;
		left: 780px;
		font-size: 30px;
		background-color: rgb(255, 0, 0);
		color: #fde802;
		border-radius: 50px;
		box-shadow: 0px 0px 24px rgba(233, 245, 2, 0.495);
		&:hover {
			background-color: rgb(9, 0, 0);
			color: #ffffff;
		}
	}
	#find_result {
		margin: 0 220px;
		padding: 0 10px;
		button {
			border-radius: 50px;
			user-select: text;
			color: rgb(254, 255, 254);
		}
	}
	table {
		margin: 10px 500px;
		td {
			text-align: center;
			font-size: 20px;
			button {
				background-color: #144756;
				border-radius: 50%;
			}
		}
		th:nth-child(3n),
		td:nth-child(3n) {
			display: none;
		}
	}
	td:nth-child(2n) {
		/*文本可以选中复制*/
		user-select: text;
		color: green;
		padding: 0 10px;
	}
	button,
	input {
		border: none;
		outline: none;
		height: 32px;
		border-radius: 5px;
		font-size: 20px;
		/* 鼠标移入变小手 */
		cursor: pointer;
		background-color: green;
		padding: 0 10px;
	}
	td input,
	button {
		background-color: rgb(255, 0, 0);
	}
	td input,
	button {
		&:hover {
			background-color: rgb(7, 7, 7);
			color: #ff0101;
		}
		&:active {
			background-color: rgba(255, 209, 3, 0.986);
			color: #fcf9f9;
			box-shadow: inset -2px -2px 3px rgba(255, 255, 255, 0.6),
				inset 2px 2px 3px rgba(0, 0, 0, 0.6);
		}
	}
	/* 复选框样式开始 */
	input[type="checkbox"] {
		margin: 0px 10px;
		-webkit-appearance: none;
		appearance: none;
		width: 25px;
		height: 25px;
		position: relative;
		border-radius: 50%;
	}
	input[type="checkbox"]::after {
		content: "";
		width: 100%;
		height: 100%;
		border: 2px solid #e9f504;
		position: absolute;
		left: -3px;
		top: -3px;
		border-radius: 50%;
	}
	/* 设置复选框点击之后的样式*/
	input[type="checkbox"]:checked::after {
		height: 15px;
		width: 25px;
		border-top: none;
		border-right: none;
		border-radius: 0;
		transform: rotate(-45deg);
		transition: all 0.5s ease-in-out;
	}
	/* 设置复选框点击之后的样式结束*/
</style>
<body>
	<h2> <img src="file:///D:\My homepage\img\jpg\tuzi3.jpg" alt="与妖为邻">账号密码</h2>
	<div class="search_text">
		<input type="text" id="search_site" name="search_site" placeholder="请输入账号查看密码" />
		<button onclick="findOne()">查看</button>
	</div>
	<form action="#">
		<input type="text" id="sitename" style="width:230px;" placeholder="请输入账号" />
		<input type="text" id="siteurl" style="width:230px;" placeholder="请输入密码" />
		<button onclick="save()"> <i class="plus"></i></button>
	</form>
	<button id="delete">对选择进行删除</button>
	<hr>
	<p id="find_result">
	</p>
	<hr>
	<div class="list" id="list">
		<!-- <table></table> -->
	</div>
	<script>
		loadAll();
		//添加数据
		function save() {
			var sitename2 = document.getElementById("sitename").value;
			var siteurl2 = document.getElementById("siteurl").value;
			localStorage.setItem(sitename2, siteurl2);
			// 保存成功后,刷新页面
			loadAll();
			// 清空输入框
			document.getElementById("sitename").value = "";
			document.getElementById("siteurl").value = "";
		}
		//查询数据
		function findOne() {
			var search_site = document.getElementById("search_site").value;
			var siteurl2 = localStorage.getItem(search_site);
			var find_result = document.getElementById("find_result");
			find_result.innerHTML = "<br>" + '<button>' + search_site + '</button>' + "的密码是:" + '<button>' + siteurl2 + '</button>';
		}
		//全查询
		//将所有存储在localStorage中的对象提取出来,并展现到界面上
		function loadAll() {
			var list = document.getElementById("list");
			if (localStorage.length > 0) {
				var result = "<table border='1'>";
				result += "<tr><th>序号</th><th>账号</th><th>密码</th><th>操作</th></tr>";
				for (var i = 0; i < localStorage.length; i++) {
					var sitename2 = localStorage.key(i);
					var siteurl2 = localStorage.getItem(sitename2);
					result += "<tr>" +
						"<td>" + '<button>' + (i + 1) + '</button>' + "</td>" +
						"<td>" + sitename2 + "</td>" +
						"<td>" + siteurl2 + "</td>" +
						"<td> <input type='checkbox' name='checkbox'></td>" +
						"</tr>";
				}
				result += "</table>";
				list.innerHTML = result;
			} else {
				list.innerHTML = "数据为空……";
			}
			// 重新绑定删除按钮事件
			var deleteBtn = document.getElementById("delete");
			deleteBtn.onclick = function () {
				if (confirm("是否删除所选?")) {
					var checkboxes = document.getElementsByName("checkbox");
					for (var i = 0; i < checkboxes.length; i++) {
						if (checkboxes[i].checked) {
							// 从localStorage中删除对应的数据
							var sitename = checkboxes[i].parentNode.previousElementSibling.previousElementSibling.textContent;
							localStorage.removeItem(sitename);
							// 删除选中的行
							checkboxes[i].parentNode.parentNode.parentNode.removeChild(checkboxes[i].parentNode.parentNode);
							i--; // 注意:删除后需递减i,否则会漏掉后续的项目
						}
					}
					loadAll();
				}
			}
		};
	</script>
</body>
</html>

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值