代码输入是一样的,运行不了,是不是没有引入js文件的原因呢,如果是怎么引入呢
代码输入是一样的,运行不了,是不是没有引入js文件的原因呢,如果是怎么引入呢
代码输入是一样的,运行不了,是不是没有引入js文件的原因呢,如果是怎么引入呢
2018-07-30
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无解</title>
<style type="text/css">
* {
margin: 0 auto;
padding: 0;
}
#move {
width: auto;
height: 300px;
overflow: hidden;
background-color: hotpink;
margin: 0 auto;
}
.moke {
width: 1000px;
height: 50px;
line-height: 50px;
text-align: center;
font-size: 20px;
background-color: orchid;
}
</style>
<script type="text/javascript">
var w = 0;
function addw() {
document.getElementById("move").style.width = w + "px";
if(w < 1000) {
w += 5;
setTimeout(addw, 30);
} else {
setTiomeout(subw, 5000);
}
}
window.onload = function() {
addw();
}
function subw() {
document.getElementById("move").style.width = w + "px";
if(w > 0) {
w -= 5;
setTimeout(subw, 30);
} else {
document.getElementById("move").style.display = "none";
}
}
</script>
</head>
<body>
<div id="move">
<h1> 好好学习天天向上</h1>
</div>
<div class="moke">好喜欢学习,才怪</div>
</body>
</html>
举报