❤【作者主页-获取更多优质源码】
❤【Web前端期末作业-毕业设计精品实践案例(1000套)】
文章目录
1. 网页介绍
1网页介绍:本作品是学生个人主页网页设计主题,HTML+CSS布局制作,网页前端期末作业,大学生网页设计作业源码。 这是一个很好的网页制作,图形灵巧卡通人物,代码简单,适合学生,非常适合初学者学习和使用。
2.网页编辑:网页工作的代码简单,可以使用任何HTML编辑软件(如Dreamweaver、HBuilder、Vscode、Sublime、Webstorm、Text、Notepad++等HTML编辑软件)运行、修改和编辑。
3、知识应用:在技术方面,网页知识的主要应用有:Div+CSS、鼠标滑过效果、Table、导航栏效果、Banner、表单、二级三级页面等、视频、音频元素、Flash ,并同步设计 了解Logo(源文件)所需的知识点。
1.网页效果
二、代码展示 1、HTML结构代码
代码如下(示例):下面仅展示部分代码卡通形象,供参考~
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="keywords" content="美好乡村 板石岭">
<meta name="description" content="美好乡村 板石岭">
<link rel="stylesheet" type="text/css" href="css/2016.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/lubotu.js"></script>
<script type="text/javascript" src="js/BreakingNews.js"></script>
</head>
<body>
<div class="header">
<div class="menu">
<div class="logo"><a href="">美好乡村 板石岭</a></div>
<div class="nav">
<ul>
<li class="on"><a href="" target="_self">首页</a></li>
<li><a href="about.html" target="_self">走进板石岭</a></li>
<li><a href="news.html" target="_self">旅游动态</a></li>
<li><a href="product.html" target="_self">特产特色</a></li>
<li class="nav_r"><a href="help.html" target="_self">制作说明</a></li>
</ul>
</div>
</div>
</div>
<div class="banner">
<div class="bottom"><a id="bottom" href="#top">Bottom</a></div>
<div class="lubo">
<ul class='lubo_box'>
<li style='opacity: 1;filter:alpha(opacity=100);'><a href='#' style='background:url(picture/banner1.jpg) center top no-repeat'></a></li>
<li><a href='#' style='background:url(picture/banner2.jpg) center top no-repeat'></a></li>
<li><a href='#' style='background:url(picture/banner3.jpg) center top no-repeat'></a></li>
</ul>
</div>
</div>
<div class="main">
<div class="news">
<div class="BreakingNewsController easing" id="breakingnews2">
<div class="bn-title"></div>
<ul id="abc">
<li><a href="show.html">家发镇联三村:美好乡村板石岭文化亮点</a></li>
<li><a href="show2.html">铜陵、繁昌两地驴友携手同游美好乡村板石岭</a></li>
<li><a href="show3.html">板石岭 看山水风光品味原生态的自然生活</a></li>
</ul>
<div class="bn-arrows">
<span class="bn-arrows-left"></span>
<span class="bn-arrows-right"></span>
</div>
</div>
</div>
<div class="product">
<ul>
<li><a href="product_1.html" target="_blank"><img src="picture/news1.jpg" width="280" height="210"><span>丰富的乡村文化生活</span></a></li>
<li><a href="product_2.html" target="_blank"><img src="picture/news2.jpg" width="280" height="210"><span>纯手工制作的板石岭茶干</span></a></li>
<li class="mr0"><a href="product_3.html" target="_blank"><img src="picture/news3.jpg" width="280" height="210"><span>板石岭农村文化展示馆</span></a></li>
</ul>
</div>
</div>
<div class="footer" id="top">
<div class="footer-bottom"> 版权所有 © </div>
</div>
<div id="share"><a id="a1">返回顶部</a></div>
<script>
$(function(){
//首先将#back-to-top隐藏
$("#a1").hide();
//当滚动条的位置处于距顶部100像素以下时,跳转链接出现,否则消失
$(function () {
$(window).scroll(function(){
if ($(window).scrollTop()>100){
$("#a1").fadeIn();
}
else
{
$("#a1").fadeOut();
}
});
//当点击跳转链接后,回到页面顶部位置
$("#a1").click(function(){
$('body,html').animate({scrollTop:0},500);
return false;
});
$("#bottom").click(function(){
$('body,html').animate({
scrollTop: $($(this).attr("href")).offset().top + "px"
},500);
return false;
});
});
// 滚动新闻
$('#breakingnews2').BreakingNews({
title: '旅游动态',
timer: 4000,
effect: 'slide'
});
// 轮播图
$(".lubo").lubo({});
});
</script>
</body>
</html>
<style>
.main{
background-image: url('picture/logo.png');
}
</style>
2.CSS样式代码
* {margin:0;padding:0;}
body {font-size:14px;line-height: 180%; font-family:"Microsoft Yahei" , arial; ;background-color:#f5f5f5;color:#333333;text-align: left;}
a {color:#666666; text-decoration: none;}
a:hover {color:#12673b;}
li {list-style: none;}
img {border: none;}
h1, h2, h3, h4, h5, h6, small { font-size: 100%; font-weight: normal !important; }
.mr0 {margin-right:0 !important;}
/*头部导航*/
.header {width:100%;height:70px; line-height:70px; position:fixed;background:#ffffff;filter:alpha(opacity=80);-moz-opacity:0.80;opacity:0.80;-moz-box-shadow:2px 2px 5px #999999; -webkit-box-shadow:2px 2px 5px #999999; box-shadow:2px 2px 5px #999999;z-index: 1000;}
.menu {width:960px;margin:0 auto;overflow: hidden;}
.logo {float:left;width:237px;}
.logo a {display: block;background:url(../image/logo.png) no-repeat center center; text-indent:-9999px;background-size: 100% 100%; }
.nav {float:right;}
.nav li {float:left;width:80px;padding:0 10px;text-align: center;height:68px; line-height: 68px;background:url(../image/nav-line.jpg) no-repeat center right;font-size:16px;}
.nav li.on a {color:#12673b;}
.nav li a {display: block;}
.nav li a:hover {border-bottom:2px solid #12673b;}
.nav li.nav_r {background:none;}
.nav li.nav_r a {color:#ff0000;}
.nav li.nav_r a:hover {border-bottom:2px solid #ff0000;}
/*banner*/
.banner {width:100%;position: relative;}
.bottom {width:75px;height:86px;position: absolute; left:50%;margin-left:-38px;bottom:20px;z-index: 999;}
.bottom a {display:block;width:76px;height:86px;background:url(../image/bottom.png) no-repeat center center;text-indent: -9999px;}
.lubo{ width: 100%; min-width:1170px;clear: both; position: relative; height:674px;}
.lubo_box{ position: relative; width: 100%; height:624px; }
.lubo_box li{ float: left;position: absolute; top: 0; left: 0; width: 100%; height:624px; opacity: 0;filter:alpha(opacity=0);}
.lubo_box li a{ display: block;width: 100%; height: 100%;}
.lubo_box li img{ width: 100%; height: 624px;}
/*圆点*/
.cir_box{ overflow: hidden; position: absolute; z-index: 100;}
.cir_box li{ float: left; width: 70px; height: 5px; margin:0 5px; cursor: pointer; background: #fff; opacity: 0.8;filter:alpha(opacity=80);}
.cir_on{ background: #f4a42b !important;}
/*按钮*/
.lubo_btn{ position: absolute; width: 100%; top: 50%;margin-top:-20px;}
.left_btn, .right_btn{ width: 40px; height: 50px; background: #00ad4f;/*opacity: 0.9;filter:alpha(opacity=90); */cursor: pointer; color: #fff; line-height: 45px; font-size: 30px; text-align: center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none; box-shadow: inset 0 -4px 0 #009842}
.left_btn{ float: left;border-radius:0 5px 5px 0px;}
.right_btn{ float: right;border-radius:5px 0px 0px 5px;}
三、个人总结
一套合格的网页应包括(具体可根据个人要求确定)
页面分为四个部分:页眉、菜单导航栏(最好是下拉)、中间内容部分、页脚; 所有页面之间都有超链接,可以转到三级页面,由5-10页组成; 页面风格统一,布局显示正常,不杂乱,采用Div+Css技术; 菜单美观、醒目,二级菜单能正常弹出和跳转; 必须有JS特效,比如定时切换、手动切换图片新闻; 页面上有多媒体元素,如gif、视频、音乐,以及表单技术的使用; 页面清爽、美观、大方、与众不同。 网站前端程序不仅要能够呈现用户所需的内容,还要满足布局良好、界面美观、色彩搭配优雅、表现形式多样等要求。 4. 更多有用信息
1.如果我的博客对您有帮助茶叶网页设计模板图片,如果您喜欢我的博客内容茶叶网页设计模板图片,请一键“点赞”“✍️评论”“收藏”!
2.❤️【关注我| 获取更多源代码 | 优质文章】带你学习各种前端插件,3D炫酷效果,图片展示,文字效果,以及整站模板,大学生毕业HTML模板,期末作业模板等! “这里有很多前端开发人员,我们一起讨论前端Node知识,互相学习”!
3、欢迎大家就以上内容相关的技术问题共同交流学习。
- 本文固定链接: https://wen.nuanque.com/wangye/13733.html
- 转载请注明: nuanquewen 于 吉祥物设计/卡通ip设计/卡通人物设计/卡通形象设计/表情包设计 发表
- 文章或作品为作者独立观点不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。本文之内容为用户主动投稿和用户分享产生,如发现内容涉嫌抄袭侵权,请联系在线客服举报,一经查实,本站将立刻删除。本站转载之内容为资源共享、学习交流之目的,请勿使用于商业用途。