无法爬取网站内容并显示在 display-box 中:
<DOCTYPE !html>
<html>
<head>
<meta charset="utf-8">
<title>公式查询网</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
}
body {
background: black;
}
.container {
position: absolute;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 300px;
height: 100px;
}
.container .search {
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100px;
height: 100px;
background: crimson;
border-radius: 50%;
transition: all 1s;
z-index: 4;
box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
}
.container .search:hover {
cursor: pointer;
}
.container .search::before {
content: "";
position: absolute;
margin: auto;
top: 22px;
right: 0;
bottom: 0;
left: 22px;
width: 12px;
height: 2px;
background: white;
transform: rotate(45deg);
transition: all 0.5s;
}
.container .search::after {
content: "";
position: absolute;
margin: auto;
top: -5px;
right: 0;
bottom: 0;
left: -5px;
width: 25px;
height: 25px;
border-radius: 50%;
border: 2px solid white;
transition: all 0.5s;
}
.container input {
font-family: "Inconsolata", monospace;
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 50px;
height: 50px;
outline: none;
border: none;
background: crimson;
color: white;
text-shadow: 0 0 10px crimson;
padding: 0 80px 0 20px;
border-radius: 30px;
box-shadow: 0 0 25px 0 crimson, 0 20px 25px 0 rgba(0, 0, 0, 0.2);
transition: all 1s;
opacity: 0;
z-index: 5;
font-weight: bolder;
letter-spacing: 0.1em;
}
.container input:hover {
cursor: pointer;
}
.container input:focus {
width: 300px;
opacity: 1;
cursor: text;
}
.container input:focus ~ .search {
right: -250px;
background: #151515;
z-index: 6;
}
.container input:focus ~ .search::before {
top: 0;
left: 0;
width: 25px;
}
.container input:focus ~ .search::after {
top: 0;
left: 0;
width: 25px;
height: 2px;
border: none;
background: white;
border-radius: 0%;
transform: rotate(-45deg);
}
.container input::placeholder {
color: white;
opacity: 0.5;
font-weight: bolder;
}
.display-box {
position: absolute;
width: 600px;
height: 450px;
top: 30%;
left: 0;
right: 0;
margin: auto;
background: white;
padding: 20px;
opacity: 0;
visibility: hidden;
transition: all 0.5s;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
.display-box.visible {
opacity: 1;
visibility: visible;
}
</style>
</head>
<body>
<div class="container">
<input type="text" placeholder="搜索公式...">
<div class="search"></div>
</div>
<script>
window.addEventListener('keydown', function(event) {
if (event.keyCode === 13) {
var container = document.querySelector('.container');
var input = document.querySelector('input');
var search = document.querySelector('.search');
// 移动搜索框和搜索按钮
container.style.transform = 'translateY(-150px)';
input.style.transform = 'translateY(-150px)';
search.style.transform = 'translateY(-150px)';
// 创建显示框元素
var displayBox = document.createElement('div');
displayBox.classList.add('display-box');
displayBox.innerHTML = '';
document.body.appendChild(displayBox);
// 等待一段时间后显示显示框
setTimeout(function() {
displayBox.classList.add('visible');
// 爬取网站内容
var searchText = input.value;
fetch('/search?q=' + searchText)
.then(response => response.text())
.then(html => {
// 将爬取的内容显示在显示框中
displayBox.innerHTML = html;
})
.catch(error => console.error(error));
}, 1000);
}
});
</script>
</body>
</html>