我有一个网站,我希望在那里有一张100%宽度和100%高度的图片,上面有一个按钮,滚动页面的高度。我希望这个按钮垂直和水平居中,但我尝试的一切都不起作用,我似乎也无法滚动它。我会回答任何一个问题。 https://jsfiddle.net/cityFoeS/278dcyqg/
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
height: 100%;
width: 100%;
background: -webkit-linear-gradient(left top, black, #404040); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(bottom right, black, #404040); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(bottom right, black, #404040); /* For Firefox 3.6 to 15 */
background: linear-gradient(to bottom right, black, #404040); /*Standard syntax (must be last) */
background-repeat: no-repeat;
background-attachment: fixed;
}
#start {
color: white;
background: url('http://www.wallpaperup.com/uploads/wallpapers/2013/05/16/86283/a5d366f61be34ae146c3acc00e288ade.jpg') no-repeat center center fixed;
height:100%;
width: 100%;
padding:20px;
box-sizing: border-box;
}
#reading {
height: 100%;
width: 100%;
}
</style><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
function scrollWin() {
var h = window.innerHeight;
window.scrollTo(0, h);
}
</script>
</head>
<link href='https://fonts.googleapis.com/css?family=Julius+Sans+One' rel='stylesheet' type='text/css'>
<body>
<div id="start"><button id="start-reading"onclick="myFunction()">Start Reading</button></div>
<div id="reading"></div>
</body></html>
答案 0 :(得分:0)
您的问题出在HTML <div id="start"><button id="start-reading"onclick="myFunction()">Start Reading</button></div>
查看onclick
部分,您正在调用一个不存在的函数。
您可以将其更改为正确的函数名称,它可以正常工作,但我已经使用了最佳实践: https://jsfiddle.net/278dcyqg/1/
您应该尽量避免在实际的HTML代码上使用onclick
,并尝试通过JavaScript处理所有事件