|
|
@ -19,7 +19,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="navbar-right">
|
|
|
|
<div class="navbar-right">
|
|
|
|
<a href="index.html" class="active">首页</a>
|
|
|
|
<a href="index.html" class="active">首页</a><div class="line"></div>
|
|
|
|
<a href="news-categories.html">新闻分类</a>
|
|
|
|
<a href="news-categories.html">新闻分类</a>
|
|
|
|
<a href="special-reports.html">专题报道</a>
|
|
|
|
<a href="special-reports.html">专题报道</a>
|
|
|
|
<a href="news-updates.html">新闻资讯</a>
|
|
|
|
<a href="news-updates.html">新闻资讯</a>
|
|
|
@ -57,12 +57,19 @@
|
|
|
|
Web新闻网站
|
|
|
|
Web新闻网站
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
let totalhight = document.body.scrollHeight
|
|
|
|
let totalHight = document.body.scrollHeight
|
|
|
|
const Prostick = document.querySelector('.Prostick')
|
|
|
|
const Prostick = document.querySelector('.Prostick')
|
|
|
|
window.addEventListener('scroll', function () {
|
|
|
|
window.addEventListener('scroll', function () {
|
|
|
|
let pro = (window.pageYOffset / totalhight) * 100
|
|
|
|
let pro = (window.pageYOffset / totalhHght) * 100
|
|
|
|
Prostick.style.width = pro + '%'
|
|
|
|
Prostick.style.width = pro + '%'
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
const list =document.querySelector('.navbar-right')
|
|
|
|
|
|
|
|
const line = document.querySelector('.line')
|
|
|
|
|
|
|
|
list.addEventListener('click',function(e){
|
|
|
|
|
|
|
|
if (e.target.tagName === 'A'){
|
|
|
|
|
|
|
|
line.style.transform = `translateX(${e.target.tagName}px)`
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
|
|
const imgs = [
|
|
|
|
const imgs = [
|
|
|
|
{ src: "pics/1.png" },
|
|
|
|
{ src: "pics/1.png" },
|
|
|
|