动漫网页设计 期末大作业 [大二学生网页作业]
原创
©著作权归作者所有:来自51CTO博客作者@码出未来④-web网页设计的原创作品,请联系作者获取转载授权,否则将追究法律责任
📂文章目录
二、📚网站介绍
📔网站布局方面:计划采用目前主流的、能兼容各大主流浏览器、显示效果稳定的浮动网页布局结构。
📓网站程序方面:计划采用最新的网页编程语言HTML5+CSS3+JS程序语言完成网站的功能设计。并确保网站代码兼容目前市面上所有的主流浏览器,已达到打开后就能即时看到网站的效果。
📘网站素材方面:计划收集各大平台好看的图片素材,并精挑细选适合网页风格的图片,然后使用PS做出适合网页尺寸的图片。
📒网站文件方面:网站系统文件种类包含:html网页结构文件、css网页样式文件、js网页特效文件、images网页图片文件;
📙网页编辑方面:网页作品代码简单,可使用任意HTML编辑软件(如:Dreamweaver、HBuilder、Vscode 、Sublime 、Webstorm、Text 、Notepad++
等任意html编辑软件进行运行及修改编辑等操作)。
其中:
(1)📜html文件包含:其中index.html是首页、其他html为二级页面;
(2)📑 css文件包含:css全部页面样式,文字滚动, 图片放大等;
(3)📄 js文件包含:js实现动态轮播特效, 表单提交, 点击事件等等(个别网页中运用到js代码)。
三、🔗网站效果
▶️1.视频演示
B24JP 蜡笔小新-3页
🧩 2.图片演示
四、💒 网站代码
🧱HTML结构代码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link type="text/css" rel="stylesheet" href="css/css.css" />
<title>蜡笔小新</title>
</head>
<body>
<div class="wrapin">
<!--顶部-->
<header class="clearfix"> <a href="index.html" class="logo">蜡笔小新</a>
<ul class="nav">
<li><a href="index.html">首页</a></li>
<li><a href="renwu.html">人物介绍</a></li>
<li><a href="tupian.html">图片鉴赏</a></li>
</ul>
</header>
<div class="banner"> <img src="images/banner1.jpg"/> </div>
<div class="in_com">
<div class="con_top clearfix">
<div class="pic"><img src="images/quanjia.jpg"/></div>
<div class="text"> <b>《蜡笔小新》</b>是由日本漫画家臼井仪人创作的漫画。 <br>
<br>
1990年8月,在《weekly漫画action》上开始连载。1992年,根据漫画改编的同名动画在朝日电视台播出。2010年7月16日,臼井仪人遗作《蜡笔小新》第50卷出版。 在作者臼井仪人去世后,作品由"臼井仪人&UY工作室"沿袭原作风格继续创作。 <br>
<br>
</div>
</div>
<div class="title">
<h2>创作背景</h2>
</div>
<div class="text_a clearfix"> 臼井仪人先生说之所以会创造出小新这个形象,是因为他在观察自己的孩子的时候,发现小孩子的想法往往非常独特,<img class="rt" src="images/pic_04.jpg" width="200"/>以至于作者被小孩的世界所吸引。所有的小孩都有乖巧和调皮的两面性。 这种两面性对作者来讲是十分有趣的。反过来作者正是在自己的作品中反映了这一两面性。他同时承认“小新”有一部分是他自己的翻版。据他透露,蜡笔小新里有许多内容是他现实生活的写照,例如:小新爸爸造型与他本人有些相似;小新和他爸爸两道浓眉毛乃是因作者自己嫌弃自己的眉毛太稀疏 </div>
<div class="title">
<h2>剧情简介</h2>
</div>
<div class="text_a clearfix"> 小新是一个年仅5岁,正在幼儿园上学的小男孩。他内心早熟,喜欢欣赏并向美女搭讪。最初小新与父亲广志和母亲美伢组成一个三人家族。随后又添加了流浪狗小白,日子频繁琐碎却不乏温馨感动。随着故事展开,又加入了新的成员妹妹野原向日葵 <br>
<br>
<img src="images/e24baabaa8d74e6db16171ed29219583_th.jpg"/> </div>
</div>
<footer>
<P>蜡笔小新</P>
</footer>
</div>
</body>
</html>
🏠CSS样式代码
/*通用类*/
* {
margin: 0;
padding: 0;
}
body {
min-width: 1000px;
margin: 0 auto;
font-size: 14px;
font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
background: #fff;
text-align: justify;
color: #010000;
position: relative;
}
h1, h2, h3 {
font-weight: 500;
}
img {
border: none;
}
a {
cursor: pointer;
color: #333;
text-decoration: none;
outline: none;
}
ul {
list-style-type: none;
}
em {
font-style: normal;
}
.lt {
float: left;
}
.rt {
float: right;
}
div.clear {
font: 0px Arial;
line-height: 0;
height: 0;
overflow: hidden;
clear: both;
}
.clearfix::after {
content: "";
display: block;
clear: both;
}
/*wrapin 主体容器宽度*/
.wrapin {
width: 1000px;
margin-left: auto;
margin-right: auto;
}
/*公用CSS 开始*/
/*header 开始*/
header {
background: #cf2212;
line-height: 60px;
padding: 0 15px;
}
header .logo {
float: left;
font-size: 24px;
color: #fff;
font-weight: bold;
line-height: 60px;
}
header .nav {
float: right;
}
header .nav li {
width: 120px;
text-align: center;
font-size: 16px;
display: inline-block;
}
header .nav li a {
color: #fff;
}
.banner {
display: block;
}
.banner img {
display: block;
width: 100%;
}
.in_com {
background: #f4f8ff;
padding: 15px;
display: block;
}
.con_top .pic {
width: 300px;
float: left;
}
.con_top .pic img {
width: 100%;
}
.con_top .text {
float: right;
width: 650px;
line-height: 28px;
color: #333;
}
.title {
background: #598bd2;
line-height: 40px;
padding: 0 15px;
margin: 20px 0;
}
.title h2 {
font-size: 20px;
color: #fff;
}
.text_a {
line-height: 28px;
color: #333;
}
.text_a img {
margin-left: 15px;
}
footer {
background: #cf2212;
line-height: 60px;
padding: 0 15px;
text-align: center;
font-size: 14px;
color: #fff;
}
.pic_con {
margin: 0 -15px;
}
.pic_con li {
float: left;
width: 33.333%;
box-sizing: border-box;
padding: 15px;
}
.pic_con li img {
width: 100%;
height: 240px;
object-fit: cover;
}
.renwu_box li {
position: relative;
height: 260px;
padding-bottom: 15px;
border-bottom: 1px dashed #ccc;
margin-bottom: 15px;
}
.renwu_box li .pic {
width: 260px;
height: 260px;
position: absolute;
left: 0;
top: 0;
}
.renwu_box li .pic img {
width: 100%;
height: 100%;
object-fit: cover;
}
.renwu_box li .text {
margin-left: 280px;
font-size: 16px;
line-height: 28px;
color: #333;
}
五、🎁更多源码
1.如果我的博客对你有帮助 请 “👍点赞” “✍️评论” “💙收藏”
一键三连哦!