吾爱破解 - LCG - LSG |安卓破解|病毒分析|www.52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1597|回复: 1
收起左侧

[会员申请] 申请会员ID:张氏诸葛

[复制链接]
吾爱游客  发表于 2022-8-5 10:47
1,申请 I D:张氏诸葛
2,个人邮箱:1434691571@qq.com
3,原创技术文章,如下:

#鄙人大二学生刚熟练html和css技术,下面鄙人自己做的网易云音乐静态首页,各大佬多多指教。

#首页源代码
HTML代码:
[HTML] 纯文本查看 复制代码
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
		<title>首页</title>
		<link rel="stylesheet" type="text/css" href="iconfont/iconfont.css"/>
		<link rel="stylesheet" href="css/style.css" />
	</head>
	<body>
		<!--头部-->
		<div class="top_big">
			<div class="top">
				<i class="iconfont font22"><img src="img/top-01.png"/></i>
				<input type="search" name="" class="iconfont font22" value="" placeholder="  搜索音乐、歌词、电台" />
				<i class="iconfont font22"><img src="img/top-02.png"/></i>
			</div>
		</div>
		
		<!--主体内容-->
		<div class="main">
			<!--导航-->
			<div class="main_nav">
				<a href="#">个性推荐</a>
				<a href="#">歌单</a>
				<a href="#">主播电台</a>
				<a href="#">排行榜</a>
			</div>
			
			<!--焦点图-->
			<div class="banner">
				<img src="img/banner.png"/>
			</div>
			
			<!--内容二-->
			<div class="main_two">
				<span>
					<img src="img/content-01.png"/>
					<p>私人FM</p>
				</span>
				<span>
					<img src="img/content-02.png"/>
					<p>开启个性推荐</p>
				</span>
				<span>
					<img src="img/content-03.png"/>
					<p>云音乐新歌榜</p>
				</span>
			</div>
			
			<!--推荐歌单-->
			<div class="recommend">
				<div class="recommend_top">
					<span>
						<img src="img/content-10.png"/>
						<span>推荐歌单</span>
					</span>
					<a href="#" class="iconfont font22">更多</a>
				</div>
				
				<div class="recommend_content">
					<span>
						<i>
							<a href="#">
								<img src="img/content-04.png"/>
								<p>华语女声||那些入耳入心的代表曲</p>
							</a>
						</i>
						<i>
							<a href="#">
								<img src="img/content-05.png"/>
								<p>【钢琴后摇】 初雪点地,窸窣低语</p>
							</a>
						</i>
						<i>
							<a href="#">
								<img src="img/content-06.png"/>
								<p>云音乐热歌榜</p>
							</a>
						</i>
					</span>
					
					<span>
						<i>
							<a href="#">
								<img src="img/content-04.png"/>
								<p>华语女声||那些入耳入心的代表曲</p>
							</a>
						</i>
						<i>
							<a href="#">
								<img src="img/content-05.png"/>
								<p>【钢琴后摇】 初雪点地,窸窣低语</p>
							</a>
						</i>
						<i>
							<a href="#">
								<img src="img/content-06.png"/>
								<p>云音乐热歌榜</p>
							</a>
						</i>
					</span>
				</div>
			</div>
		</div>
		
		<!--脚部-->
		<div class="footer">
			<i>
				<span class="iconfont font22"></span>
				<p>发现音乐</p>
			</i>
			<i>
				<span class="iconfont font22"></span>
				<p>我的音乐</p>
			</i>
			<i>
				<span class="iconfont font22"></span>
				<p>朋友</p>
			</i>
			<i>
				<span class="iconfont font22"></span>
				<p>账号</p>
			</i>
		</div>
	</body>
</html>


CSS代码:
[CSS] 纯文本查看 复制代码
/*全局样式*/
*{margin:0;padding: 0;box-sizing: border-box;}
li{list-style:none;}
a{text-decoration: none;}
i{font-style: normal;}
img{display:block;border:none;}
html,body{height:100%;}
html{font-size:26.66667vw;}
body{font-size:14px;}
.left{float: left;}
.right{float: right;}

/*头部*/
.top_big{
	width:100%;
	height:0.44rem;
	color: #cbcbcb;
	font-size: 26px;
	position: absolute;
	top:0;
	left:0;
	background:#d43b33;
}
.top{
	display: flex;
	justify-content: space-between;
	height: 100%;
	align-items: center;
	padding:0 0.125rem 0 0.14rem;
}
.top>i:first-child>img{
	width: 0.19rem;
    height: 0.25rem;
}
.top>i:last-child>img{
	width: 0.23rem;
    height: 0.23rem;
}
.top>input{
	width: 2.67rem;
    height: 0.3rem;
    color: #dbdbdb;
    font-size: 14px;
    text-align: center;
    border: none;
	outline: none;
	border-radius: 0.05rem;
}

/*主体内容*/
/*导航*/
.main{
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 0.44rem 0 0 0;
}
.main_nav{
	width: 100%;
	height: 0.4rem;
	display: flex;
	line-height: 0.4rem;
	font-size: 14px;
	justify-content: space-between;
	padding: 0 0.25rem 0 0.13rem;
	border-bottom:  0.005rem solid #cdc2c8;
}
.main_nav a{
	color: #393939;
	text-align: center;
}
.main_nav a:first-child{
	width: 0.7rem;
	height: 100%;
	color: #bb4537;
	border-bottom: 0.02rem solid #ca403d;
	box-sizing: border-box;
}

/*焦点图*/
.banner,.banner>img{
	width: 100%;
	height: 1.38rem;
}

/*内容二*/
.main_two{
	width: 100%;
	height: 1.04rem;
	display: flex;
	justify-content: space-between;
	padding: 0.15rem 0.345rem 0.15rem 0.43rem;
	border-bottom: 0.005rem solid #e0e1e3;
	margin-bottom: 0.2rem;
}
.main_two>span{
	width: 0.72rem;
	height: 100%;
	font-size: 12px;
	text-align: center;
	position: relative;
}
.main_two>span>img{
	width: 0.55rem;
	height: 0.55rem;
	display: inline-block;
	vertical-align: middle;
}
.main_two>span>p{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

/*推荐歌单*/
.recommend{
	width: 100%;
	padding: 0 0.1rem 0 0.1rem;
}
.recommend_top{
	height: 0.16rem;
	color: #323335;
	display:flex;
	justify-content: space-between;
}
.recommend_top>span>img{
	width: 0.16rem;
	height: 0.16rem;
	display: inline-block;
	margin-right: 0.06rem;
}
.recommend_top>span>span{font-size: 14px;}
.recommend_top>a{font-size: 12px;color: #696b6a;}
.recommend_content{
	width: 100%;
	padding-top: 0.2rem;
}
.recommend_content span{
	display:flex;
	justify-content: space-between;
}
.recommend_content i{
	width: 1.13rem;
	height: 1.52rem;
	font-size: 12px;
	position: relative;	
}
.recommend_content i>a>img{
	width: 100%;
	height: 1.13rem;
}
.recommend_content i>a{color: #424345;}
.recommend_content i>a>p{
	height: 0.34rem;
	position: absolute;
	bottom: 0;
	left: 0;
}
.recommend_content span:first-child{margin-bottom: 0.18rem;}

/*脚部*/
.footer{
	width: 100%;
	height: 0.49rem;
	position: absolute;
	bottom:0;
	left:0;
	background-color: rgba(0,0,0,0.75);
	display:flex;
	justify-content: space-between;
	padding: 0.07rem 0.28rem 0 0.28rem;
	
}
.footer>i{
	width: 0.4rem;
	height: 0.42rem;
	color: #a6a8a7;
	text-align: center;
	font-size: 10px;
}
.footer>i>span{font-size: 25px;}
.footer>i:first-child{color: #fff;}


展示效果:


#注册页面源代码
HTML代码:
[HTML] 纯文本查看 复制代码
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
		<title>手机号注册</title>
		<link rel="stylesheet" type="text/css" href="iconfont/iconfont.css"/>
		<link rel="stylesheet" type="text/css" href="css/register.css"/>
		<link rel="stylesheet" href="css/style.css" />
	</head>
	<body>
		<!--头部-->
		<div class="register_top">
			<a href="#">
				<i class="iconfont font22"></i>
				<i>手机号注册</i>
			</a>
		</div>
		
		<!--内容-->
		<div class="content">
			<form action="" method="post">
				<p class="iconfont font22"><span>+86</span><input type="text" placeholder="输入手机号"/></p>
				<p class="iconfont font22"><input type="text" value="" placeholder="设置登录密码,不少于6位"/></p>
				<input type="submit" value="下一步"/>
			</form>
			
		</div>
		
		<!--脚部-->
		<div class="register_footer">
			<div class="register_footer_top">
				<div class="register_footer_top_left"></div>
				<p>其他注册方式</p>
				<div class="register_footer_top_right"></div>
			</div>
			<div class="register_footer_content">
				<a href="#">
					<p class="iconfont font22"></p>
					<p>微信</p>
				</a>
				<a href="#">
					<p class="iconfont font22"></p>
					<p>微信</p>
				</a>
				<a href="#">
					<p class="iconfont font22"></p>
					<p>微信</p>
				</a>
				<a href="#">
					<p class="iconfont font22"></p>
					<p>微信</p>
				</a>
			</div>
		</div>
	</body>
</html>


CSS代码:
[CSS] 纯文本查看 复制代码
.register_top{
	width: 100%;
	height: 0.43rem;
	background-color: #d43b33;
	padding: 0.1rem 0 0.11rem 0.18rem;
	position: absolute;
	top:0;
	left:0;
}
.register_top a{
	width: 2.15rem;
	height: 0.23rem;
	color: #fff;
	font-size: 16px;
	display: flex;
	justify-content: space-between;
}
.register_top a>i:first-child{font-size: 20px;}

/*内容*/
.content{
	width: 100%;
	padding: 0.59rem 0.1rem 0 0.1rem;
}
.content form,.content form p{width: 100%;color: #8f8f8f;font-size: 16px;}
.content form{height: 3.55rem;}
.content form p:nth-child(1){
	border: 0.005rem solid #c9c9c9;
	border-radius: 0.05rem 0.05rem 0 0;
}
.content form p:nth-child(2){
	border-left: 0.005rem solid #c9c9c9;
	border-right: 0.005rem solid #c9c9c9;
	border-bottom: 0.005rem solid #c9c9c9;
	border-radius: 0 0 0.05rem 0.05rem;
	margin-bottom: 0.16rem;
}
.content form p:nth-child(1),.content form p:nth-child(2){padding: 0.13rem 0 0.13rem 0.13rem;}
.content form p:nth-child(1) span{color: #2e2e2e;padding-left: 0.11rem;margin-right: 0.1rem;}	
.content form p:nth-child(2)>input{padding-left: 0.11rem;}
.content form input{
	border: none;
	outline: none;
	color: #cdcdcd;
}
.content form input:nth-child(3){
	width: 100%;
	height: 0.4rem;
	color: #e0736c;
	background-color: #d33a32;
	border-radius: 0.05rem;
}

/*脚部*/
.register_footer{
	width: 100%;
	height: 1.23rem;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 0.36rem 0.29rem 0.39rem;
}
.register_footer_top{
	width: 100%;
	height: 0.12rem;
	color: #a3a3a3;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.2rem;
}
.register_footer_top_left,.register_footer_top_right{
	width: 1.03rem;
	height: 0.10rem;
	border-bottom: 0.005rem solid #e7e8ea;
}
.register_footer_content{
	width: 100%;
	height: 0.63rem;
	display: flex;
	justify-content: space-between;
}
.register_footer_content>a{
	width: 0.42rem;
	height: 0.63rem;
	text-align: center;
	position: relative;
}
.register_footer_content a p:first-child{
	width: 100%;
	height: 0.42rem;
	color: #666;
	font-size: 23px;
	line-height: 0.42rem;
	border-radius: 50%;
	border: 0.005rem solid #bebfc1;
}
.register_footer_content a p:last-child{
	font-size: 13px;
	color: #a8a9ab;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

展示效果:


#主播电台源代码
HTML代码:
[HTML] 纯文本查看 复制代码
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
		<title>主播电台</title>
		<link rel="stylesheet" type="text/css" href="iconfont/iconfont.css"/>
		<link rel="stylesheet" type="text/css" href="css/anchor.css"/>
		<link rel="stylesheet" href="css/style.css" />
	</head>
	<body>
		<!--头部-->
		<div class="top_big">
			<div class="top">
				<i class="iconfont font22"><img src="img/top-01.png"/></i>
				<input type="search" name="" class="iconfont font22" value="" placeholder="  搜索音乐、歌词、电台" />
				<i class="iconfont font22"><img src="img/top-02.png"/></i>
			</div>
		</div>
		
		<!--主体内容-->
		<div class="main">
			<!--导航-->
			<div class="main_nav">
				<a href="#">个性推荐</a>
				<a href="#">歌单</a>
				<a href="#">主播电台</a>
				<a href="#">排行榜</a>
			</div>
			<!--主体内容一-->
			<div class="one_main">
				<p>
				<a href="#">
					<img src="img/twocontent-01.png"/>
					<span>明星做主播</span>
				</a>
				<a href="#">
					<img src="img/twocontent-02.png"/>
					<span>创作|翻唱</span>
				</a>
				<a href="#">
					<img src="img/twocontent-03.png"/>
					<span>脱口秀</span>
				</a>
				<a href="#">
					<img src="img/twocontent-04.png"/>
					<span>美文读物</span>
				</a>
				</p>
				
				<p>
				<a href="#">
					<img src="img/twocontent-05.png"/>
					<span>音乐故事</span>
				</a>
				<a href="#">
					<img src="img/twocontent-06.png"/>
					<span>情感调频</span>
				</a>
				<a href="#">
					<img src="img/twocontent-07.png"/>
					<span>有声小说</span>
				</a>
				<a href="#">
					<img src="img/twocontent-08.png"/>
					<span>人文历史</span>
				</a>
				</p>
				
				<p class="cricle">
					<i></i>
					<i></i>
					<i></i>
				</p>
			</div>
			
			<!--主播电台排行榜-->
			<div class="ranking_list_big">
				<div class="ranking_list">
					<span>
						<p class="iconfont font22">主播电台排行榜</p>
						<p><span>最火的节目和电台,</span>每天更新</p>
					</span>
					
					<span>
						<img src="img/twocontent-09.png"/>
					</span>
				</div>
			</div>
			
			<!--精彩节目推荐-->
			<div class="recommend">
				<h2>精彩节目推荐</h2>
				<ul>
					<li>
						<a href="#">
							<span class="left"><img src="img/twocontent-10.png"/></span>
							<span class="left">
								<p>特别的人</p>
								<p>最美不过告白当前唱的歌</p>
							</span>
						</a>
					</li>
					
					<li>
						<a href="#">
							<span class="left"><img src="img/twocontent-11.png"/></span>
							<span class="left">
								<p>什么?唐朝人不爱胖子!</p>
								<p>为什么糖厂审美不一样呢?</p>
							</span>
						</a>
					</li>
					
					<li>
						<a href="#">
							<span class="left"><img src="img/twocontent-12.png"/></span>
							<span class="left">
								<p>惨就一个字</p>
								<p>你遇到最惨的事是什么?</p>
							</span>
						</a>
					</li>
					
					<li>
						<a href="#">
							<span class="left"><img src="img/twocontent-11.png"/></span>
							<span class="left">
								<p>什么?唐朝人不爱胖子!</p>
								<p>为什么糖厂审美不一样呢?</p>
							</span>
						</a>
					</li>
					
					<li>
						<a href="#">
							<span class="left"><img src="img/twocontent-12.png"/></span>
							<span class="left">
								<p>惨就一个字</p>
								<p>你遇到最惨的事是什么?</p>
							</span>
						</a>
					</li>
				</ul>
			</div>
		</div>
		
		<!--脚部-->
		<div class="footer">
			<i>
				<span class="iconfont font22"></span>
				<p>发现音乐</p>
			</i>
			<i>
				<span class="iconfont font22"></span>
				<p>我的音乐</p>
			</i>
			<i>
				<span class="iconfont font22"></span>
				<p>朋友</p>
			</i>
			<i>
				<span class="iconfont font22"></span>
				<p>账号</p>
			</i>
		</div>
	</body>
</html>


CSS代码:
[CSS] 纯文本查看 复制代码
/*主体内容*/
/*导航*/
.main_nav a:first-child{
	color: #393939!important;
	border-bottom: none!important;
}
.main_nav a:nth-child(3){
	width: 0.7rem;
	height: 100%;
	color: #bb4537;
	border-bottom: 0.02rem solid #ca403d;
	box-sizing: border-box;
}

/*主体内容一*/
.one_main{
	width: 100%;
	height: 1.5rem;
	padding: 0.18rem 0.2rem 0.1rem 0.175rem;
}
.one_main p{
	width: 100%;
	height: 0.42rem;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.one_main a{
	width: 0.6rem;
	height: 0.42rem;
	text-align: center;
	font-size: 11px;
	color: #838584;
	position: relative;
}
.one_main a>img{
	width: 0.26rem;
	height: 0.24rem;
	margin: 0 auto;
}
.one_main a>span{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.one_main>p:last-child{
	width: 0.27rem;
	height: 0.06rem;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}
.one_main>p:last-child>i{
	width: 0.06rem;
	height: 0.06rem;
	border-radius: 50%;
}
.one_main>p:last-child>i:first-child{
	background-color: #c64629;
}
.one_main>p:last-child>i:nth-child(2),.one_main>p:last-child>i:nth-child(3){background-color: #e2e3e5;}

/*主播电台排行榜*/
.ranking_list_big{
	width: 100%;
	height: 0.8rem;
	padding: 0 0.06rem;
	margin-top: 0.1rem;	
	margin-bottom: 0.3rem;
}
.ranking_list{
	width: 3.64rem;
	height: 0.8rem;
	border: 0.01rem solid #d5d6d8;
	box-sizing: border-box;
	padding: 0.11rem 0.15rem 0 0.15rem;
	display: flex;
	justify-content: space-between;
}
.ranking_list>span:first-child{
	width: 1.69rem;
	height: 0.37rem;
	font-size: 15px;
	color: #313234;
	margin-top: 0.1rem;
}
.ranking_list span>p:last-child{font-size: 12px;color: #5b5c5e;margin-top: 0.1rem;}
.ranking_list span>p:last-child span{color: #a04847;}
.ranking_list span:last-child,.ranking_list span>img{
	width: 0.865rem;
	height: 0.67rem;
}
/*精彩节目推荐*/
.recommend{
	width:100%;
	color: #3f4042;
	padding: 0 0.1rem;
}
.recommend h2{
	width: 100%;
	height: 0.17rem;
	font-size: 16px;
	font-weight: normal;
	box-sizing: border-box;
	padding-left: 0.06rem;
	border-left: 0.03rem solid #d33c31;
	margin-bottom: 0.14rem;
}
.recommend li{
	width: 3.56rem;
	height: 0.68rem;
	border-top: 0.05px solid #e2e3e5;
	padding: 0.06rem 0 0.07rem 0;
}
.recommend li>a>span>img{
	width: 0.56rem;
	height: 0.56rem;
	margin-right: 0.08rem;
}
.recommend li>a>span:last-child{
	height: 0.38rem;
	line-height: 0.22rem;
	margin-top: 0.11rem;
}
.recommend li>a>span:last-child p:first-child{font-size: 13px;color: #323335;}
.recommend li>a>span:last-child p:last-child{font-size: 12px;color: #848486;}

展示效果:

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

Hmily 发表于 2022-8-8 11:17
抱歉,未能达到申请要求,申请不通过,可以关注论坛官方微信(吾爱破解论坛),等待开放注册通知。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

快速回复 收藏帖子 返回列表 搜索

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-4-26 23:39

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表