垂直和水平中心以及javascript滚动的问题

problems with vertical and horizontal center and javascript scroll

本文关键字:javascript 滚动 问题 水平 垂直      更新时间:2023-09-26

我有一个网站,我希望在其中有一张以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>

您的问题出现在HTML、<div id="start"><button id="start-reading"onclick="myFunction()">Start Reading</button></div>

看看onclick部分,您正在调用一个不存在的函数。

你可以把它改成正确的函数名,它就会起作用,但我却篡改了最佳实践:https://jsfiddle.net/278dcyqg/1/

您应该尽量避免在实际的HTML标记上使用onclick,并尝试通过JavaScript 处理所有事件