如何在html body标签上添加链接到背景图像

时间:2015-04-13 03:34:23

标签: html hyperlink

在这个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%;

1 个答案:

答案 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";
})

fiddled here

试试这个