大一学生HTML个人网页作业作品——火影忍者动漫7页面带特效带轮播(HTML+CSS+JavaScript)

news2024/10/7 2:25:16

HTML实例网页代码, 本实例适合于初学HTML的同学。该实例里面有设置了css的样式设置,有div的样式格局,这个实例比较全面,有助于同学的学习,本文将介绍如何通过从头开始设计个人网站并将其转换为代码的过程来实践设计。


⚽精彩专栏推荐👇🏻👇🏻👇🏻

【作者主页——🔥获取更多优质源码】
【web前端期末大作业——🔥🔥毕设项目精品实战案例(1000套)】


文章目录🌰

  • 一、网页介绍📖
  • 一、网页效果🌌
  • 二、代码展示😈
    • 1.HTML代码结构 🧱
    • 2.CSS样式代码 🏠
  • 三、个人总结😊
  • 四、更多干货🚀

一、网页介绍📖

1 网页简介:此作品为学生个人主页网页设计题材,HTML+CSS 布局制作,web前端期末大作业,大学生网页设计作业源码,这是一个不错的网页制作,画面精明,代码为简单学生水平, 非常适合初学者学习使用。

2.网页编辑:网页作品代码简单,可使用任意HTML编辑软件(如:Dreamweaver、HBuilder、Vscode 、Sublime 、Webstorm、Text 、Notepad++ 等任意html编辑软件进行运行及修改编辑等操作)。

3.知识应用:技术方面主要应用了网页知识中的: Div+CSS、鼠标滑过特效、Table、导航栏效果、Banner、表单、二级三级页面等,视频、 音频元素 、Flash,同时设计了Logo(源文件)所需的知识点。


一、网页效果🌌

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述


二、代码展示😈


1.HTML代码结构 🧱

代码如下(示例):以下仅展示部分代码供参考~

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>动漫--火影忍者</title>
    <link href="css/style.css" rel="stylesheet" type="text/css" />
</head>

<body>
    <div class="index_list">
        <ul>
            <li> <a href="index.html">首页</a> </li>
            <li> <a href="jingli.html"> 剧情简介</a> </li>
            <li> <a href="zuopin.html">火影疾风传</a> </li>
            <li> <a href="hudong.html">火影新世代</a> </li>
            <li> <a href="huojiang.html"> 历代火影</a> </li>
            <li> <a href="pinjia.html"> 名字由来</a> </li>
            <li> <a href="login.html">登录</a> </li>
        </ul>
    </div>
    <div class="cleaner"></div>
    <div id="container">
        <div class="dm">
            <!-- 代码 开始 -->
            <div id="yc-mod-slider">
                <div class="wrapper">
                    <div id="slideshow" class="box_skitter fn-clear">
                        <ul>
                            <li> <img class="cubeRandom" src="images/dm1.jpg" /></li>
                            <li> <img class="cubeRandom" src="images/dm2.jpg" /></li>
                            <li> <img class="cubeRandom" src="images/dm3.jpg" /></li>
                        </ul>
                    </div>
                    <script type="text/javascript" src="js/slideshow.js"></script>
                </div>
            </div>
            <!-- 代码 结束 -->
        </div>
        <div class=" clear"></div>
        <div class="index_main">
            <h1>Studio Pierrot </h1>
            <a href="javascript:;">电视动画《火影忍者》改编自日本漫画家岸本齐史的同名漫画,2002年10月3日在东京电视台系列全6局、岐阜放送首播,共220话;第二季《火影忍者疾风传》自2007年2月开始播出,共500话;累计全720话。</a>
            <p>
                <img src="images/1.jpg">


            </p>

        </div>
        <div class="share">

            <div class="cleaner"></div>
        </div>
        <div id="footer"> Copyright © 动漫--火影忍者</div>
    </div>
    <!-- End Of Container -->
</body>

</html>



2.CSS样式代码 🏠



 html {
     background: #000;
     ;
 }

 body {
     margin: 0;
     padding: 0;
     font-family: Tahoma, "Trebuchet MS", Verdana;
     font-size: 12px;
     line-height: 1.5em;
     width: 100%;
     display: table;
     background: url(../images/bj.jpg) center top no-repeat fixed #000;
 }

 a:link,
 a:visited {
     color: #87430c;
     text-decoration: none;
 }

 a:active,
 a:hover {
     color: #FFFF00;
 }

 p {
     font-family: Tahoma, "Trebuchet MS", Verdana;
     font-size: 14px;
     color: #222;
     line-height: 24px;
     text-align: justify;
 }

 h1 {
     font-family: Tahoma, "Trebuchet MS", Verdana;
     font-size: 25px;
     color: #333;
     font-weight: normal;
     margin: 0 0 15px 0;
 }

 h2 {
     font-family: "Times New Roman", Times, serif;
     font-size: 14px;
     color: #111;
     margin: 0 0 10px 0;
 }

 h3 {
     font-family: Tahoma;
     font-size: 13px;
     color: #111;
     font-weight: normal;
     margin: 0 0 3px 0;
 }

 .title_left {
     float: left;
     width: 333px;
     height: 46px;
 }

 .title_right {
     float: right;
     width: 165px;
     height: 40px;
     color: #d89300;
     font-family: Tahoma;
     font-size: 28px;
     margin: 0;
     padding: 6px 0 0 0;
 }

 .title_left h1 {
     float: left;
     display: block;
     font-family: Tahoma;
     font-size: 25px;
     color: #e17638;
     font-weight: normal;
     margin: 0 0 2px 0;
 }

 .title_left h3 {
     font-family: Tahoma;
     font-size: 20px;
     color: #fff;
     font-weight: normal;
     display: block;
     float: right;
 }

 .gallery ul {
     margin-left: -40px;
 }

 .gallery li {
     float: left;
     margin: 5px;
     list-style-type: none;
 }

 .gallery li img {
     width: 75px;
     height: 75px;
 }

 li {
     list-style-type: none;
 }

 #container {
     width: 950px;
     padding: 30px;
     margin: 10px auto;
     background-color: rgba(255, 255, 255, 0.7);
     -moz-border-radius: 20px;
     border-radius: 20px;
     min-height: 600px;
     margin-bottom: 50px;
 }

 .index_main {
     width: 700px;
     height: auto;
     margin: auto;
     padding: 50px 0px;
     text-align: center;
 }

 .index_main h1 {
     color: #fff;
     font-size: 111px;
     text-align: center;
     line-height: 136px;
     font-weight: normal;
 }

 .index_list {
     width: 960px;
     margin: auto;
     min-height: 80px;
     padding-top: 20px;
 }

 .index_list ul {}

 .index_list li {
     height: 50px;
     margin: 15px;
     float: left;
 }

 .index_list li a {
     color: #fff;
     font-size: 22px;
     text-align: center;
     line-height: 36px;
 }

 .index_list li a:hover {
     color: #990;
 }

 .share {
     width: 220px;
     height: 50px;
     margin: auto;
 }

 .share li {
     float: left;
     margin: 2px;
 }

 .share li img {
     width: 30px;
     height: 30px;
 }

 .Language {
     width: 860px;
     margin: auto;
 }

 .Language ul {
     width: 700px;
 }

 .Language li {
     width: 380px;
     height: 100px;
     margin: 15px;
 }

 .Language img {
     width: 90px;
     height: 66px;
     float: left;
 }

 .Language li p {
     font-size: 22px;
     text-align: left;
     line-height: 66px;
     width: 600px;
 }

 .Contact_input {
     width: 500px;
     float: left;
     margin: 5px;
     font-size: 20px;
     color: #444;
     line-height: 26px;
 }

 .Contact_input p {
     font-size: 20px;
     color: #444;
     line-height: 26px;
     text-indent: 0em;
 }

 .c_input {
     width: 300px;
     height: 25px;
 }

 .c_text {
     width: 300px;
     height: 100px;
 }

 .SUB {
     width: 120px;
     height: 35px;
     text-align: center;
     background-color: #333;
     -moz-border-radius: 5px;
     border-radius: 5px;
     margin-top: 10px;
 }

 .SUB a {
     color: #FFF;
     line-height: 35px;
     font-size: 18px;
 }

 .SUB:hover {
     width: 120px;
     height: 35px;
     text-align: center;
     background-color: #800;
     -moz-border-radius: 5px;
     border-radius: 5px;
 }

 .xinshang {
     width: 960px;
     line-height: 55px;
 }

 .xinshang ul {
     margin-left: -40px;
 }

 .xinshang li {
     width: 280px;
     height: 180px;
     -moz-border-radius: 40px;
     border-radius: 40px;
     overflow: hidden;
     float: left;
     margin: 5px;
     list-style-type: none;
     border: 5px solid #ccc;
 }

 .xinshang li:hover {
     border: 5px solid #fff;
 }

 .xinshang li img {
     width: 280px;
     height: 180px;
 }

 .Restaurant {
     width: 960px;
 }

 .Restaurant ul {
     margin-left: -40px;
 }

 .Restaurant li {
     width: 170px;
     height: 100px;
     -moz-border-radius: 10px;
     border-radius: 10px;
     overflow: hidden;
     float: left;
     margin: 5px;
     list-style-type: none;
     border: 2px solid #ccc;
 }

 .Restaurant li:hover {
     border: 2px solid #fff;
 }

 .Restaurant li img {
     width: 180px;
     height: 100px;
 }

 .Hotel {
     width: 960px;
     border-top: 1px dashed #ddd;
 }

 .Hotel ul {
     margin-left: -40px;
 }

 .Hotel li {
     width: 220px;
     height: 140px;
     -moz-border-radius: 10px;
     border-radius: 10px;
     overflow: hidden;
     float: left;
     margin: 5px;
     list-style-type: none;
     border: 2px solid #ccc;
 }

 .Hotel li:hover {
     border: 2px solid #4b75dd;
 }

 .Hotel li img {
     width: 220px;
     height: 140px;
 }

 .left_main {
     width: 800px;
     padding: 10px;
     height: auto;
     float: left;
 }

 .left_main p {
     font-size: 14px;
     line-height: 22px;
     color: #333;
     text-indent: 2em;
 }

 .youji_main {
     width: 920px;
     padding: 10px;
     height: auto;
     float: left;
 }

 .youji_main p {
     font-size: 14px;
     line-height: 22px;
     color: #333;
     text-indent: 2em;
 }

 .fl {
     float: left;
 }

 .fr {
     float: right;
 }

 .3_col_middle img {
     float: left;
     border: none;
 }

 .3_col_middle img.img_middle {
     margin: 0 8px;
 }

 .more {
     float: right;
     color: #777;
     font-size: 11px;
     margin: 0 10px 0px 0;
 }

 .more a {
     text-decoration: none;
     color: #777;
 }

 .more a:hover {
     text-decoration: underline;
 }

 .more_2 {
     float: left;
     color: #b0b0b0;
     font-size: 10px;
     margin: 0 10px 10px 0;
     background: url(../images/more.png) no-repeat;
     padding: 0 0 0 10px;
     background-position: 0 7px;
 }

 .more_2 a {
     text-decoration: none;
     color: #777;
 }

 .more_2 a:hover,
 .more_2:hover {
     text-decoration: underline;
 }

 #footer {
     width: 100%;
     color: #555;
     margin: 0;
     padding: 10px 0;
     text-align: center;
 }

 .cleaner {
     clear: both;
     height: 0;
     margin: 0;
     padding: 0;
 }

 /* -------------------zhuce login css -------------------------------*/

 .zhuce {
     width: 300px;
     height: auto;
     float: left;
     padding: 10px;
     font-size: 16px;
     border-top: 2px solid #963;
 }

 .zhuce_info {
     width: 280px;
     height: 30px;
     margin: 5px auto;
 }

 .zhuce_info input {
     width: 180px;
     height: 20px;
     float: right;
 }

 .subout {
     width: 220px;
     height: 30px;
     margin: 5px auto
 }

 .sub {
     width: 60px;
     height: 20px;
     margin: 5px;
     margin-left: 30px;
     color: #111;
     padding: 2px;
     float: left;
     text-align: center;
     border: 2px solid #555;
     background-color: #ddd;
 }

 .sub:hover {
     background-color: #fff;
 }

 .sub a {
     font-size: 16px;
     line-height: 20px;
     color: #111;
 }

 .sub a:hover {
     color: #800;
     text-decoration: none;
 }

 /* -------------------index lunbo css -------------------------------*/

 .dm {
     width: 950px;
     height: 380px;
     margin: auto;
     -moz-border-radius: 30px;
     border-radius: 30px;
     overflow: hidden;
     margin-bottom: 20px;
 }

 .fn-clear {
     zoom: 1;
 }

 .box_skitter {
     position: relative;
     background: none;
 }

 .box_skitter ul {
     display: none;
 }

 .box_skitter .container_skitter {
     overflow: hidden;
     position: relative;
 }

 .box_skitter .image {
     overflow: hidden;
 }

 .box_skitter .image img {
     width: 950px;
     height: 380px;
     display: none;
 }

 .box_skitter .box_clone {
     position: absolute;
     top: 0;
     left: 0;
     width: 100px;
     overflow: hidden;
     display: none;
     z-index: 20;
 }

 .box_skitter .box_clone img {
     position: absolute;
     top: 0;
     left: 0;
     z-index: 20;
 }

 .box_skitter .prev_button {
     position: absolute;
     top: 30%;
     left: 30px;
     z-index: 100;
     width: 69px;
     height: 124px;
     overflow: hidden;
     text-indent: -9999em;
     margin-top: -5px;
     background: url(../images/prev.png) no-repeat left top !important;
 }

 .box_skitter .next_button {
     position: absolute;
     top: 30%;
     right: 50px;
     z-index: 100;
     width: 69px;
     height: 124px;
     overflow: hidden;
     text-indent: -9999em;
     margin-top: -5px;
     background: url(../images/next.png) no-repeat left top !important;
 }

 .box_skitter .label_skitter {
     z-index: 150;
     position: absolute;
     display: none;
 }

 .loading {
     position: absolute;
     top: 50%;
     right: 50%;
     z-index: 10000;
     margin: -16px -16px;
     color: #fff;
     text-indent: -9999em;
     overflow: hidden;
     background: url(../images/ajax-loader.gif) no-repeat left top;
     width: 31px;
     height: 31px;
 }

 #slideshow {
     width: 950px;
     height: 380px;
 }

 #slideshow ul {
     display: none;
 }

 #content_area #zp {
     width: 900px;
     margin-right: auto;
     margin-left: auto;
     text-align: center;
 }

 #content_area #zp p {
     text-align: center;
 }

三、个人总结😊

一套合格的网页应该包含(具体可根据个人要求而定)

  1. 页面分为页头、菜单导航栏(最好可下拉)、中间内容板块、页脚四大部分;
  2. 所有页面相互超链接,可到三级页面,有5-10个页面组成;
  3. 页面样式风格统一布局显示正常,不错乱,使用Div+Css技术;
  4. 菜单美观、醒目,二级菜单可正常弹出与跳转;
  5. 要有JS特效,如定时切换和手动切换图片新闻;
  6. 页面中有多媒体元素,如gif、视频、音乐,表单技术的使用;
  7. 页面清爽、美观、大方,不雷同。
  8. 网站前端程序不仅要能够把用户要求的内容呈现出来,还要满足布局良好、界面美观、配色优雅、表现形式多样等要求。

四、更多干货🚀

1.如果我的博客对你有帮助、如果你喜欢我的博客内容,请 “👍点赞” “✍️评论” “💙收藏” 一键三连哦!

2.❤️【关注我| 获取更多源码 | 优质文章】 带您学习各种前端插件、3D炫酷效果、图片展示、文字效果、以及整站模板 、大学生毕业HTML模板 、期末大作业模板 、等! 「在这里有好多 前端 开发者,一起探讨 前端 Node 知识,互相学习」!

3.以上内容技术相关问题😈欢迎一起交流学习🔥在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/73581.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

深度学习: BatchNormlization论文详细解读

《Batch Normlization: Accelerating Deep Network Training by Reducing Internal Covariate Shift》 论文详细解读&#x1f4a1;目录<center>《Batch Normlization: Accelerating Deep Network Training by Reducing Internal Covariate Shift》 论文详细解读基础知识面…

机器学习11支持向量机SVM(处理线性数据)

文章目录一、什么是支撑向量机&#xff1f;二、Hard Margin SVM思想逻辑推理点到直线的距离&#xff1a;推论&#xff1a;再推&#xff1a;换符号替代&#xff1a;最大化距离&#xff1a;三、Soft Margin SVM和SVM正则化Hard Margin SVM缺点&#xff1a;所以我们必须思考一个机…

YOLO v1

参考 YOLO v1 - 云社区 - 腾讯云 摘要 我们提出了一种新的目标检测方法YOLO。 先前的目标检测工作重新利用分类器来执行检测。 相反&#xff0c;我们将对象检测作为空间分离的边界框和相关类概率的回归问题。 在一次评估中&#xff0c;一个单一的神经网络直接从完整的图像预…

内核态的文件操作函数:filp_open、filp_close、vfs_read、vfs_write、set_fs、get_fs

关于用户态的文件操作函数我们知道有open、read、write这些。但是这些的实现都是依赖于库的实现&#xff0c;但是在内核态是没有库函数可用的。最近做测试&#xff0c;在内核态中&#xff0c;需要学习一下在内核态里面的文件操作函数。分为三对出现。 感谢前辈的优秀文章&…

企业网站怎么建立?【企业网站的建设】

不少的实体企业都会考虑建立一个自己的企业网站&#xff0c;那么在企业网站的建设之前需要做好功课。那么企业网站怎么建立&#xff1f;下面给大家说说大概的流程。 1、申请域名 企业可以申请一个和自己企业名称相关的域名&#xff0c;而且域名尽量不要太长&#xff0c;否则难…

Java学习之多态数组

目录 一、定义 二、举例说明 要求1 父类-Person 子类-Student 子类-Teacher main类 运行结果 要求2 思路分析 main类中的代码 运行结果 一、定义 数组的定义类型为父类类型&#xff0c; 里面保存的实际元素类型为子类类型&#xff08;也可以有父类&#xff09; 二、…

Cat.1无线数据传输终端/Cat.1 DTU/LTE Cat.1 DTU/Cat 1模组功能

LTE Cat.1无线数传终端F2C16将借助成熟的LTE网络以更好的覆盖、更快的速度、更低的延时&#xff0c;完美取代传统2G/3G网络&#xff0c;为中低速率物联网行业提供优质的无线连接服务。 工业级芯片设计&#xff0c;设备稳定联网 ●全工业级芯片设计&#xff0c;宽温宽压&#xf…

「虚拟社交」爆火,资深玩家「当道」

⬆️“政企数智办公行业研究报告及融云新品发布会”明天直播&#xff01; 一切应用都将社交化。关注【融云全球互联网通信云】回复【融云】抽取高颜值大容量高端可乐保温杯哦~ 中国政企数智办公平台行业研究报告 融入社交能力&#xff0c;创造增长奇迹。激活用户在不同场景的社…

6个改善【客户体验】的自动电子邮件营销回复示例

关键词&#xff1a;客户体验、电子邮件营销 电子邮件自动回复器是将跨境电商的客户体验 (CX) 提升到一个新水平的一种方式。为了帮助跨境电商决定应该设置哪种自动电子邮件&#xff0c;我们汇总了对客户体验影响最大的 六个电子邮件自动回复示例。 这里有一些统计数据可以正确看…

国内各行业领域是否能通过与元宇宙和虚拟数字人的结合振兴数藏经济?

在过去几年&#xff0c; NFT和数字藏品已被广泛用于数字经济。 根据中国数字藏品行业协会早在2021年发布的市场发展报告中就指出了当年中国数字藏品市场规模达到2166亿元。 今年&#xff0c;国内元宇宙概念被炒得火热&#xff0c;从故宫博物院联合腾讯、网易等推出「故宫系列」…

关于C++11

文章目录&#x1f60d;C11优势&#x1f60e; 列表初始化&#x1f601;变量类型推导&#x1f44c;为什么需要类型推导&#x1f44d;decltype类型推导&#xff08;了解&#xff09;&#x1f61c;final 与 overridefinal&#x1f91e;override❤️默认成员函数控制&#x1f929;显…

TH10-数据统计与内容审核

TH10-数据统计与内容审核1、用户冻结解冻1.1 用户冻结ManageControllerManageService1.2 用户解冻ManageControllerManageService1.3 查询数据列表UserInfoManageService1.4 探花系统修改UserFreezeService2、数据统计2.1 数据采集2.1.1 部署RabbitMQ2.1.2 消息类型说明2.1.3 实…

使用dd+hexdump命令修改环境变量的值和升级uboot

前言 这篇写的较细&#xff0c;使用dd擦除emmc本来就是比较危险的事情&#xff0c;所以一定要细致。哪里没看明白的&#xff0c;赶紧留言问我&#xff0c;可不能存有侥幸心理。 思路大概就是&#xff1a; 1 先从emmc把数据读出来&#xff0c;放一个镜像文件里&#xff0c;使…

【整理】Python全栈技术学习路线

【整理】Python全栈技术学习路线【阶段一】Python基础Linux【阶段二】多任务编程服务器前端基础【阶段三】数据库mini Web框架【阶段四】Dhango框架美多商城项目【阶段五】DRF框架美多商城后台【阶段六】项目部署Flask框架Hm头条【阶段七】人工智能基础推荐系统基础Hm头条推荐系…

带你了解extern “C“

1.extern “C” 这个语法是c的语法。我们知道在一个.c文件中调用另一个.c中实现的函数是没有任何问题的&#xff0c;一个.cpp文件调用另一个.cpp文件中实现的函数也是没有问题的。但是我们如果想要在一个.cpp文件调用另一个.c文件中实现的函数&#xff0c;或者在一个.c文件中调…

双调序列

目录 双调序列 思路: 代码: 时间复杂度: 总结: 题目链接: 双调序列 题目描述&#xff1a; XJ编程小组的童鞋们经常玩一些智力小游戏&#xff0c;某月某日&#xff0c;小朋友们又发明了一种新的序列&#xff1a;双调序列&#xff0c;所谓的双调呢主要是满足如下条件描述…

TensorFlow之分类模型-2

1 基本概念 2 文本分类与情感分析 获取数据集 加载数据集 训练数据集 性能设置 为了提升训练过程中数据处理的性能&#xff0c;keras技术框架提供数据集缓存的功能&#xff0c;使用缓存可以避免读取磁盘数据集时由于IO消耗太多而出现性能瓶颈的问题&#xff0c;如果数据集…

操作系统的主要功能是什么

操作系统的主要功能是进程管理、存储管理、设备管理、文件管理、作业管理。 计算机系统的资源可分为设备资源和信息资源两大类。 操作系统位于底层硬件与用户之间&#xff0c;是两者沟通的桥梁。 1、进程管理&#xff0c;其工作主要是进程调度&#xff0c;在单用户单任务的情…

opcj2-盘点几个常见的Java开源脚手架

很多人抱怨自己是CURDer&#xff0c;很多时候就是在简单的修修改改。如果不书序SSM&#xff08;Spring、SpringMVC和Mybatis&#xff09;套路的人可能开始的时候会感觉非常吃力。但是熟悉之后发现其实就这么回事。SpringMVC负责响应对外接口&#xff0c;Mybatis负责数据库的访问…

TF4-圈子功能

TF4-圈子功能1、首页推荐1.1、接口分析1.2、功能实现1.2.1 controller1.2.2 service1.2.3 API接口1.2.4 请求dto对象2、MongoDB集群3、圈子功能2.1、功能说明1.2、实现方案分析1.3、技术方案(重点)1.4、表结构设计4、圈子实现3.1、环境搭建3.1.1、mongo主键自增3.1.2、实体类Mo…