在这个page上我在<body>
标记上有一个背景图片,我想知道是否可以添加一个链接,以便点击某些内容。
如果这不可能,我将如何添加将被超链接的包装器<div>
?
<body id="index">
</body>
body#index {
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-image: url(//) !important;
background-size: cover;
background-repeat: no-repeat;
background-color: transparent !important;
background-position: center;
width: 100%;
height: 100%;
答案 0 :(得分:0)
检查这是否是你想要的
<body id="index">
</body>
<强> CSS 强>
body#index {
background-color: red !important;
width:100vw;
height: 100vh;
}
<强> Jquery的强>
$('body').click(function () {
location.href="http://www.google.com";
})
试试这个