Web前端開發(fā)技術(shù) 描述 網(wǎng)頁設(shè)計題材,DIV+CSS 布局制作,HTML+CSS網(wǎng)頁設(shè)計期末課程大作業(yè) | ?個人博客網(wǎng)站 | ?個人主頁介紹 | 個人簡介 | 個人博客設(shè)計制作" />

国产成人精品无码青草_亚洲国产美女精品久久久久∴_欧美人与鲁交大毛片免费_国产果冻豆传媒麻婆精东

15158846557 在線咨詢 在線咨詢
15158846557 在線咨詢
所在位置: 首頁 > 營銷資訊 > 網(wǎng)站運(yùn)營 > 美食主題-html+css網(wǎng)頁制作

美食主題-html+css網(wǎng)頁制作

時間:2023-10-13 12:42:02 | 來源:網(wǎng)站運(yùn)營

時間:2023-10-13 12:42:02 來源:網(wǎng)站運(yùn)營

美食主題-html+css網(wǎng)頁制作:?> ? 源碼獲取 文末聯(lián)系 ?

Web前端開發(fā)技術(shù) 描述 網(wǎng)頁設(shè)計題材,DIV+CSS 布局制作,HTML+CSS網(wǎng)頁設(shè)計期末課程大作業(yè) | ?個人博客網(wǎng)站 | ?個人主頁介紹 | 個人簡介 | 個人博客設(shè)計制作 | 等網(wǎng)站的設(shè)計與制作 | 大學(xué)生個人HTML網(wǎng)頁設(shè)計作品 | HTML期末大學(xué)生網(wǎng)頁設(shè)計作業(yè),Web大學(xué)生網(wǎng)頁
  1. HTML:結(jié)構(gòu)
  2. CSS:樣式 在操作方面上運(yùn)用了html5和css3, 采用了div+css結(jié)構(gòu)、表單、超鏈接、浮動、絕對定位、相對定位、字體樣式、引用視頻等基礎(chǔ)知識
  3. JavaScript:做與用戶的交互行為
@TOC


前端學(xué)習(xí)路線

(1)html文件:其中index.html是首頁、其他html為二級頁面; (2)css文件:css全部頁面樣式,文字滾動, 圖片放大等; (3)js文件:js實(shí)現(xiàn)動態(tài)輪播特效, 表單提交, 點(diǎn)擊事件等等(網(wǎng)頁中運(yùn)用到j(luò)s代碼)

網(wǎng)頁基本結(jié)構(gòu)

(1)首頁:進(jìn)入網(wǎng)頁中看到的第一個頁面(LOGO、公司名稱、導(dǎo)航、banner、新聞、相關(guān)信息、底部信息、banner一般是5個   (2)二級頁面:從首頁點(diǎn)擊進(jìn)入之后的頁面叫做二級頁面 (3)三級頁面:從二級頁面點(diǎn)擊進(jìn)入的頁面

網(wǎng)頁html:網(wǎng)頁是構(gòu)成網(wǎng)站的基本元素,是承載各種網(wǎng)站應(yīng)用的平臺。通俗地說,網(wǎng)站就是由網(wǎng)頁組成的 首頁網(wǎng)站:首頁是一個網(wǎng)站的入口網(wǎng)頁,故往往會被編輯得易于了解該網(wǎng)站多數(shù)作為首頁的文件名是index加上擴(kuò)展名 導(dǎo)航菜單:是指位于頁面頂部或者側(cè)邊區(qū)域的,也稱之為導(dǎo)航欄,它起著鏈接站點(diǎn)或者軟件內(nèi)的各個頁面的作用. 網(wǎng)頁頁腳:是網(wǎng)頁中每個頁面的底部的區(qū)域。常用于顯示附加信息。如作者、備案號等。


網(wǎng)頁演示




在這里插入圖片描述
在這里插入圖片描述
在這里插入圖片描述
在這里插入圖片描述
在這里插入圖片描述



HTML結(jié)構(gòu)代碼

<!DOCTYPE html><html lang="en"><head> <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1.0" name="viewport"> <title>天海祐希 Yuki Amami - Index</title> <meta content="" name="description"> <meta content="" name="keywords"> <!-- Favicons --> <!-- Template Main CSS File --> <link href="css/style.css" rel="stylesheet"></head><body> <!-- ======= Header ======= --> <header id="header" class="fixed-top d-flex justify-content-center align-items-center header-transparent"> <nav id="navbar" class="navbar"> <ul> <li><a class="nav-link scrollto active" href="">主頁</a></li> <li><a class="nav-link scrollto" href="about.html">基本信息</a></li> <li><a class="nav-link scrollto" href="resume.html">演藝經(jīng)歷</a></li> <li><a class="nav-link scrollto" href="services.html">獲獎記錄</a></li> <li><a class="nav-link scrollto " href="portfolio.html">美圖欣賞</a></li> <li><a class="nav-link scrollto" href="contact.html">分享你的見解</a></li> </ul> <i class="bi bi-list mobile-nav-toggle"></i> </nav><!-- .navbar --> </header><!-- End Header --> <!-- ======= Hero Section ======= --> <section id="hero"> <div class="hero-container"> <h1>天海祐希</h1> <h2>日本女演員,代表作《千年之戀·源氏物語》、《女王的教師》、《BOSS》等等</h2> <a href="#about" class="btn-scroll scrollto" title="Scroll Down"><i class="bx bx-chevron-down"></i></a> </div> </section><!-- End Hero --> <!-- =======尾部 ======= --> <footer id="footer"> <div class="container"> <h3>Yuki Amami</h3> <div class="social-links"> <div class="contentl"> <ul class="wrapper"> <li><img src="picture/portfolio-2.jpg"></li> <li><img src="picture/portfolio-4.jpg"></li> <li><img src="picture/portfolio-7.jpg"></li> <li><img src="picture/portfolio-2.jpg"></li> </ul> <ul class="radius"> </ul> <div class="prev"> <span> < </span> </div> <div class="next"> <span>></span> </div> </div> </div> <div class="copyright"> &copy; Copyright <strong><span>xxx</span></strong>. All Rights Reserved </div> </div> </footer><!-- 尾部 --> <a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a></body></html><script type="text/javascript"> window.onload = function () { var contentl = document.getElementsByClassName('contentl')[0] var wrapper = document.getElementsByClassName('wrapper')[0] var radius = document.getElementsByClassName('radius')[0] var prev = document.getElementsByClassName('prev')[0] var next = document.getElementsByClassName('next')[0] var imgWidth = wrapper.children[0].offsetWidth var wrapIndex = 0 //懸停顯隱 contentl.onmouseover = function () { clearInterval(timer) next.style.opacity = "0.6"; prev.style.opacity = "0.6"; } contentl.onmouseout = function () { timer = setInterval(function () { next.onclick() }, 3500) next.style.opacity = "0"; prev.style.opacity = "0"; } //動態(tài)創(chuàng)建圓點(diǎn)指示器 function createLi() { for (let i = 0; i < wrapper.children.length - 1; i++) { let li = document.createElement("li") radius.appendChild(li) } radius.children[0].className = 'radius-active' } createLi() //指示器響應(yīng) function cirAction(wrapIndex) { for (let i = 0; i < radius.children.length; i++) { radius.children[i].classList.remove("radius-active") } if (wrapIndex === wrapper.children.length - 1) { radius.children[0].className = 'radius-active' } else { radius.children[wrapIndex].className = 'radius-active' } } //指示器控制 function cirMouse() { for (let i = 0; i < radius.children.length; i++) { radius.children[i].onmouseover = function () { clearInterval(timer); animate(wrapper, -i * imgWidth); wrapIndex = i; cirAction(wrapIndex) } } } cirMouse() //滑動動畫 function animate(el, target) { clearInterval(el.timer) el.timer = setInterval(function () { let move = 25; let present = wrapper.offsetLeft; move = present > target ? -move : move; present += move; if (Math.abs(present - target) > Math.abs(move)) { wrapper.style.left = present + 'px' } else { clearInterval(el.timer); wrapper.style.left = target + 'px' } }, 16) } //next控制 next.onclick = function () { if (wrapIndex === wrapper.children.length - 1) { wrapIndex = 0; wrapper.style.left = 0 + 'px'; } wrapIndex++; animate(wrapper, -wrapIndex * imgWidth); cirAction(wrapIndex); } //prev控制 prev.onclick = function () { if (wrapIndex === 0) { wrapIndex = wrapper.children.length - 1; wrapper.style.left = -wrapIndex * imgWidth + 'px'; } wrapIndex--; animate(wrapper, -wrapIndex * imgWidth); cirAction(wrapIndex) } //自動滑動 var timer = setInterval(function () { next.onclick() }, 3500) }</script><style> * { margin: 0; padding: 0; } .contentl { width: 1080px; height: 300px; position: relative; overflow: hidden; margin: 0 auto; } .wrapper { width: 400%; height: 100%; margin: 0; padding: 0; position: absolute; top: 0; left: 0; display: flex; transition: none; } .wrapper li { flex: 1; list-style: none; margin: 0; padding: 0; } .wrapper li img { width: 100%; } .radius { height: 12px; margin: 0; padding: 0; position: absolute; bottom: 10px; left: 10px; display: flex; align-items: center; } .radius li { width: 8px; height: 8px; border-radius: 50%; background-color: white; opacity: 0.6; margin: 0 3px; padding: 0; list-style: none; } .radius-active { opacity: 1 !important; border: 2px solid rgb(255, 255, 255, 0.5); background-clip: padding-box; } .prev { width: 23px; line-height: 34px; text-align: center; position: absolute; left: 0; top: 50%; margin-top: -17px; background-color: darkgray; opacity: 0; } .next { width: 23px; line-height: 34px; text-align: center; position: absolute; right: 0; top: 50%; margin-top: -17px; background-color: darkgray; opacity: 0; } .prev span, .next span { font-weight: bold; color: white; font-size: 18px; }</style>

學(xué)的反而越迷茫

有這種感覺很正常,因?yàn)槟氵€沒有真正去公司里面待過,也不清楚自己到底要學(xué)多少東西才能勝任公司里面給你分配的活。我從你的表述來看,你的基礎(chǔ)應(yīng)該還是很扎實(shí)的。跟著網(wǎng)上那種全套的視頻教程學(xué)肯定沒有問題。

當(dāng)你以后真正進(jìn)入公司,發(fā)現(xiàn)工作的難度和量大約只有你學(xué)習(xí)時期的大約20%,你可能就會發(fā)出一聲嘆息:原來工作也不過如此嘛。

這是很正常的,因?yàn)榇蟛糠止臼钦心氵M(jìn)去去干活的,寫業(yè)務(wù)的,不是讓你一個新人去研發(fā)公司架構(gòu)的。都是現(xiàn)成的東西,你要做的就是在別人的教導(dǎo)下,手把手的指揮下去添磚加瓦。到時候你恐怕要驚呼:就這?

所以,放松心態(tài)吧,好好享受大學(xué)時光 —————————————————


學(xué)習(xí)更多

關(guān)注我 | 點(diǎn)贊博文 | 每天帶你漲知識





在這里插入圖片描述


關(guān)鍵詞:主題

74
73
25
news

版權(quán)所有? 億企邦 1997-2025 保留一切法律許可權(quán)利。

為了最佳展示效果,本站不支持IE9及以下版本的瀏覽器,建議您使用谷歌Chrome瀏覽器。 點(diǎn)擊下載Chrome瀏覽器
關(guān)閉