15158846557 在线咨询 在线咨询
15158846557 在线咨询
所在位置: 首页 > 营销资讯 > 网站运营 > 大一学生HTML5期末大作业——基于HTML+CSS制作中药主题实训素材

大一学生HTML5期末大作业——基于HTML+CSS制作中药主题实训素材

时间:2023-06-08 20:09:02 | 来源:网站运营

时间:2023-06-08 20:09:02 来源:网站运营

大一学生HTML5期末大作业——基于HTML+CSS制作中药主题实训素材:> ⛵ 源码获取 文末联系

Web前端开发技术 描述 网页设计题材,DIV+CSS 布局制作,HTML+CSS网页设计期末课程大作业 茶文化网站 | 中华传统文化题材 | 京剧文化水墨风书画 | 中国民间年画文化艺术网站 | 等网站的设计与制作 | HTML期末大学生网页设计作业
  1. HTML:结构
  2. CSS:样式 在操作方面上运用了html5和css3, 采用了div+css结构、表单、超链接、浮动、绝对定位、相对定位、字体样式、引用视频等基础知识

前端学习路线

(1)html文件:其中index.html是首页、其他html为二级页面; (2)css文件:css全部页面样式,文字滚动, 图片放大等; (3)js文件:js实现动态轮播特效, 表单提交, 点击事件等等(网页中运用到js代码)

网页基本结构

(1)首页:进入网页中看到的第一个页面(LOGO、公司名称、导航、banner、新闻、相关信息、底部信息、banner一般是5个   (2)二级页面:从首页点击进入之后的页面叫做二级页面 (3)三级页面:从二级页面点击进入的页面

网页html:网页是构成网站的基本元素,是承载各种网站应用的平台。通俗地说,网站就是由网页组成的 首页网站:首页是一个网站的入口网页,故往往会被编辑得易于了解该网站多数作为首页的文件名是index加上扩展名 导航菜单:是指位于页面顶部或者侧边区域的,也称之为导航栏,它起着链接站点或者软件内的各个页面的作用. 网页页脚:是网页中每个页面的底部的区域。常用于显示附加信息。如作者、备案号等。


网页演示




在这里插入图片描述



HTML结构代码

<!DOCTYPE html><html><head> <meta charset="UTF-8" /> <title>首页</title> <link href="css/main.css" rel="stylesheet" type="text/css" /> <link rel="stylesheet" href="css/font/iconfont.css" /> <link rel="stylesheet" href="css/major.css" /> <style> /* 轮播样式 */ /* #region */ .swiper { width: 1000px; height: 400px; margin: 0 auto; overflow: hidden; position: relative; margin-top: 65px; } .swiper>.lb { background-position: center; background-repeat: no-repeat; background-size: cover; height: 400px; width: 100%; } .swiper>.lb:nth-child(1) { background-image: url('images/main/1.jpg'); } .swiper>.lb:nth-child(2) { background-image: url('images/main/2.jpg'); } .swiper>.lb:nth-child(3) { background-image: url('images/main/3.jpg'); } .swiper>.lb_btn { width: 50px; height: 50px; position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); cursor: pointer; background-position: center; background-repeat: no-repeat; background-size: 100%; } .swiper>.l { left: 8px; background-image: url('images/icon/l.png'); } .swiper>.r { right: 8px; background-image: url('images/icon/r.png'); } .swiper>.lb_bottom { position: absolute; bottom: 0; width: 100%; height: 25px; } .swiper>.lb_bottom>.lb_point { width: 80px; z-index: 4; height: 20px; margin: 0 auto; display: flex; justify-content: center; align-items: center; } .swiper>.lb_bottom>.lb_point>span { display: inline-block; width: 8px; height: 8px; border-radius: 8px; background-color: #808080; margin-left: 5px; margin-right: 5px; } .hiddle { display: none; } .swiper>.lb_bottom>.lb_point>.poAct { background-color: #007aff; } /* #endregion */ /* 广告样式 */ /* #region */ .adv { width: 100%; height: 60px; margin: 0; margin-top: 10px; position: relative; } .adv>.adv_item { height: 100%; width: 100%; background-position: center; background-repeat: no-repeat; background-size: 100%; } .adv>.adv_img1 { background-image: url('images/adv/1.jpg'); } .adv>.adv_img2 { background-image: url('images/adv/2.jpg'); } .adv>.adv_img3 { background-image: url('images/adv/3.jpg'); } .sw_adv { position: absolute; right: 10px; top: 5px; z-index: 2; color: #086879; background-color: #a09090a6; border-radius: 2px; padding-left: 2px; padding-right: 2px; } .sw_adv>.icon-cuowu { margin-left: 8px; } .sw_adv>.icon-cuowu:hover { cursor: pointer; } /* #endregion */ /* main样式 */ .yemian { margin-bottom: 10px; } </style></head><body> <div> <!-- 导航栏 --> <nav class="myNavbar"> <div class="nav_container"> <div class="container_l"> <div class="logo item"><a href="index.html"></a></div> <div class="item item_act"><a href="index.html">首页</a></div> <div class="item"><a href="introduce.html">中药介绍</a></div> <div class="item"><a href="development.html">中药发展史</a></div> <div class="item"><a href="varieties.html" id="user_center">中药品种</a></div> </div> </div> </nav> <!-- 轮播 --> <div class="swiper"> <div class="lb" index="1"></div> <div class="hiddle lb" index="2"></div> <div class="hiddle lb" index="3"></div> <div class="l lb_btn"></div> <div class="r lb_btn"></div> <div class="lb_bottom"> <div class="lb_point"> <span index="1" class="lb_po poAct"></span> <span index="2" class="lb_po"></span> <span index="3" class="lb_po"></span> </div> </div> </div> <!-- main package --> <div class="yemian"> <div class="kuang"> <div class="wenzi"> <p> 以中国传统医药理论指导采集、炮制、制剂,说明作用机理,指导临床应用的药物,统称为中药。简而言之,中药就是指在中医理论指导下,用于预防、治疗、诊断疾病并具有康复与保健作用的物质。中药主要来源于天然药及其加工品,包括植物药、动物药、矿物药及部分化学、生物制品类药物。由于中药以植物药居多,故有“诸药以草为本”的说法。 </p> </div> </div> <div class="tu"> <div class="t"> <a href="javascript:void()"><img class="an_img" src="images/1.jpg" width="323" height="270" /></a> </div> <div class="t"> <a href="javascript:void()"><img class="an_img" src="images/2.jpg" width="323" height="270" /></a> </div> <div class="t"> <a href="javascript:void()"><img class="an_img" src="images/3.jpg" width="323" height="270" /></a> </div> <div class="t"> <a href="javascript:void()"><img class="an_img" src="images/20.jpg" width="323" height="270" /></a> </div> <div class="t"> <a href="javascript:void()"><img class="an_img" src="images/21.jpg" width="323" height="270" /></a> </div> <div class="t"> <a href="javascript:void()"><img class="an_img" src="images/22.jpg" width="323" height="270" /></a> </div> </div> <div class="clearit"></div> </div> <div class="banquan"> <p>Copyright ©2022 &nbsp;&nbsp;&nbsp; 姓名:xxx &nbsp;&nbsp;&nbsp; 学号:xxxx</p> </div> <!-- 返回顶部 --> <div class="to" id="to_top"> <a href="#top" title="返回顶部"> <span class="iconfont icon-huojianxianxing"></span> </a> </div> </div></body><script> // 轮播 //#region // nodeList转为数组 let imgList = Array.from(document.querySelectorAll('.lb')) let poList = Array.from(document.querySelectorAll('.lb_po')) let currentIndex = 1 let timerID = '' // 计时器id document.querySelector('.l').onclick = function() { changeImg('l') reSwiper() } document.querySelector('.r').onclick = function() { changeImg('r') reSwiper() } // 自动轮播 function autoSwiper() { timerID = window.setInterval(function() { changeImg('r') }, 3000) } autoSwiper() // 刷新轮播 function reSwiper() { window.clearInterval(timerID) autoSwiper() } // 改变图片 function changeImg(dir) { imgHiddle() if (dir == 'l') { currentIndex = currentIndex == 1 ? 3 : currentIndex - 1 } else { currentIndex = currentIndex == 3 ? 1 : currentIndex + 1 } imgList.some(function(e, i) { let ind = e.getAttribute('index') if (currentIndex == ind) { e.classList.remove('hiddle') poList[i].classList.add('poAct') return true } }) } // 清除样式 function imgHiddle() { imgList.forEach(function(e, i) { e.classList.remove('hiddle') e.classList.add('hiddle') poList[i].classList.remove('poAct') // 清除小点的样式 }) } //#endregion</script></html>

学的反而越迷茫

有这种感觉很正常,因为你还没有真正去公司里面待过,也不清楚自己到底要学多少东西才能胜任公司里面给你分配的活。我从你的表述来看,你的基础应该还是很扎实的。跟着网上那种全套的视频教程学肯定没有问题。

当你以后真正进入公司,发现工作的难度和量大约只有你学习时期的大约20%,你可能就会发出一声叹息:原来工作也不过如此嘛。

这是很正常的,因为大部分公司是招你进去去干活的,写业务的,不是让你一个新人去研发公司架构的。都是现成的东西,你要做的就是在别人的教导下,手把手的指挥下去添砖加瓦。到时候你恐怕要惊呼:就这?

所以,放松心态吧,好好享受大学时光 —————————————————


学习更多

关注我 | 点赞博文 | 每天带你涨知识




关键词:主题,素材,学生,作业,中药

74
73
25
news

版权所有© 亿企邦 1997-2025 保留一切法律许可权利。

为了最佳展示效果,本站不支持IE9及以下版本的浏览器,建议您使用谷歌Chrome浏览器。 点击下载Chrome浏览器
关闭