注册 登录 充值会员 退出
网站、APP、小程序等定制开发,联系QQ 1206995177 毕业设计 java源码 PHP源码
充值

CSS3手机端点击弹出申请信息填写表单代码

作者/代码整理:  (源码已亲测,不会安装的可以向QQ1915635791要安装视频教程) 发布日期:2022-03-07
CSS3手机端点击弹出申请信息填写表单代码
CSS3手机端点击弹出申请信息填写表单代码,有漂亮的银河星球围绕图标旋转动画效果,点击立即申请按钮切换到用户资料填写表单。


js代码

<script>
var showApplyfor = document.querySelector("#advert .content span");
showApplyfor.addEventListener("click", function () {
	document.querySelectorAll("#advert .content")[0].style.background = "#FFFFFF";
	document.querySelector("#advert .content span").style.display = "none";
	document.querySelector("#advert .content img").style.display = "none";
	document.querySelectorAll("#advert .bg1")[0].className = "bg1 animation-five";
	document.querySelectorAll("#advert .bg2")[0].className = "bg2 animation-five";
	document.querySelectorAll("#advert .bg3")[0].className = "bg3 animation-five";
	document.querySelectorAll(".content")[0].className = "content animation-four";
	setTimeout(function () {
		document.querySelector("#advert").style.display = "none";
		document.querySelector("#applyfor").style.display = "block";
		document.querySelector("#applyfor i").className = "animation-one";
		document.querySelector("#applyfor form div").className = "animation-six";
		setTimeout(function () {
			document.querySelectorAll("#applyfor input")[0].className = "animation-one";
			setTimeout(function () {
				document.querySelectorAll("#applyfor input")[0].style.left = "16px";
			}, 600);
			setTimeout(function () {
				document.querySelectorAll("#applyfor input")[1].className = "animation-one";
				setTimeout(function () {
					document.querySelectorAll("#applyfor input")[1].style.left = "16px";
				}, 600);
				setTimeout(function () {
					document.querySelectorAll("#applyfor input")[2].className = "animation-one";
					setTimeout(function () {
						document.querySelectorAll("#applyfor input")[2].style.left = "16px";
					}, 600);
					setTimeout(function () {
						document.querySelector("#applyfor button").className = "animation-two";
						setTimeout(function () {
							document.querySelector("#applyfor button").style.left = "70px";
						}, 600);
						setTimeout(function () {
							document.querySelector("#applyfor #shadow").className = "animation-three";
							setTimeout(function () {
								document.querySelector("#applyfor #shadow").style.top = "8px";
								document.querySelector("#applyfor #shadow").style.left = "8px";
							}, 600);
						}, 200);
					}, 200);
				}, 200);
			}, 200);
		}, 200);
	}, 300);
})
</script>