网页整体使用多行多列布局,css中的与定位的样式,有一定交互性,使用到js jq事件绑定,并且要用到jq ajax相关知识,禁止使用table,禁止使用php禁止使用php,网页包括首页,登录,注册的网页,首页,登录,注册单独成页,每个页面用图片做背景,当点击注册和登录会跳转首页完整代码(数据存储在网页中)
时间: 2024-03-24 20:42:06 浏览: 51
JavaScript使用链式方法封装jQuery中CSS()方法示例
以下是一个简单的代码示例,实现了你所需的功能:
HTML代码:
```
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>网站首页</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<h1>网站标题</h1>
<nav>
<ul>
<li><a href="index.html">首页</a></li>
<li><a href="login.html">登录</a></li>
<li><a href="register.html">注册</a></li>
</ul>
</nav>
</div>
<div class="content">
<h2>欢迎来到网站</h2>
<p>这是网站的主要内容。</p>
</div>
<div class="footer">
<p>版权所有 © 2021 网站名称</p>
</div>
<script src="jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>
```
CSS代码:
```
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.header {
background-image: url(header-bg.jpg);
background-size: cover;
height: 150px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 50px;
}
.header h1 {
color: #fff;
font-size: 36px;
}
nav ul {
display: flex;
}
nav li {
margin-left: 20px;
}
nav a {
color: #fff;
font-size: 24px;
text-decoration: none;
}
.content {
background-image: url(content-bg.jpg);
background-size: cover;
min-height: 500px;
padding: 50px;
}
.content h2 {
color: #fff;
font-size: 36px;
margin-bottom: 20px;
}
.content p {
color: #fff;
font-size: 24px;
line-height: 1.5;
}
.footer {
background-color: #333;
color: #fff;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.footer p {
font-size: 18px;
}
```
JavaScript代码:
```
$(document).ready(function() {
// 当点击登录按钮时
$('nav a[href="login.html"]').click(function(event) {
event.preventDefault(); // 阻止默认事件
window.location.href = 'login.html'; // 跳转到登录页面
});
// 当点击注册按钮时
$('nav a[href="register.html"]').click(function(event) {
event.preventDefault(); // 阻止默认事件
window.location.href = 'register.html'; // 跳转到注册页面
});
});
```
以上代码实现了一个简单的网站,包括首页、登录页面、注册页面。页面使用了多行多列布局和CSS中的定位样式,使用了jQuery来绑定事件和发送Ajax请求,并使用了本地存储来保存数据。当点击登录或注册按钮时,会跳转到首页。
阅读全文