帮我加入使用JavaScript与jquery简单技术部分
时间: 2024-04-02 18:37:04 浏览: 43
好的,以下是加入 JavaScript 和 jQuery 的示例代码:
<!DOCTYPE html>
<html>
<head>
<title>我的网页</title>
<meta charset="UTF-8">
<style>
/* CSS 样式表 */
body {
margin: 0;
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
header {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
font-size: 24px;
}
nav {
background-color: #f1f1f1;
text-align: center;
padding: 10px;
margin-bottom: 20px;
}
nav a {
display: inline-block;
color: #333;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 18px;
font-weight: bold;
}
nav a:hover {
background-color: #ddd;
color: black;
}
section {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin: 20px;
}
section img {
max-width: 100%;
height: auto;
margin: 10px;
box-shadow: 0 0 5px #ccc;
}
section p {
font-size: 18px;
line-height: 1.5;
text-align: center;
margin: 10px;
}
/* JavaScript */
section img:hover {
transform: scale(1.1);
box-shadow: 0 0 10px #ccc;
}
/* jQuery */
$(document).ready(function(){
$("nav a").click(function(){
$(this).addClass("active").siblings().removeClass("active");
});
});
</style>
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
<script>
/* JavaScript */
function showMsg() {
alert("欢迎来到我的网页!");
}
</script>
</head>
<body>
<header>
<h1>欢迎来到我的网页</h1>
</header>
<nav>
<a href="#" class="active">首页</a>
<a href="#">关于我们</a>
<a href="#">联系我们</a>
</nav>
<section>
<img src="https://picsum.photos/200/300" alt="图片1">
<p>这是一张美丽的图片</p>
<img src="https://picsum.photos/200/300" alt="图片2">
<p>这是另一张美丽的图片</p>
<img src="https://picsum.photos/200/300" alt="图片3">
<p>这是第三张美丽的图片</p>
</section>
<footer>
<p>2021我的网页</p>
</footer>
<script>
/* JavaScript */
showMsg();
</script>
</body>
</html>
这个示例添加了 JavaScript 和 jQuery 部分,其中:
- JavaScript 部分增加了一个鼠标悬停图片时的放大效果和弹出欢迎信息的函数;
- jQuery 部分使用了 $() 函数,为导航栏的链接添加了点击事件,当用户点击链接时,当前链接被高亮显示,其他链接则取消高亮。注意,需要在页面底部引入 jQuery 库。
阅读全文