小提琴:http: //jsfiddle.net/FtQ4d/1/
我正在为班级做一个项目,我制作了一个网页,中间有一个标题,下面有两个左右手的图像。将鼠标悬停在其中一只手上时,它将离开屏幕,显示下方的链接。我已经将链接隐藏在手下,但是当手移动时,链接不可点击。我怎样才能做到这一点?
以下是html和css的相关部分:
<body>
<a href="https://www.google.com"><p id="rsm">(view my resume.)</p></a>
<div id="ind_wrap">
<p id="ind">INDEX.HTML</p>
<img src="r_hand.png" id="r_hand"/>
<img src="l_hand.png" id="l_hand"/>
</div>
</body>
CSS:
#r_hand{
background-image:url("rhand.png");
margin-top:-28%;
margin-left:50%;
height:100%;
width:35%;
animation:fr_bottom 4s 1;
}
#r_hand:hover{
animation:m_right 4s 1;
}
#l_hand{
margin-top:-52%;
margin-left:8%;
height:100%;
width:35%;
animation:fl_bottom 4s 1;
}
#l_hand:hover{
animation:m_left 3s 1;
}
#rsm{
margin-top:40%;
margin-left:20%;
position:absolute;
z-index:-1;
}
那么,#rsm
当左手移开它时,下面的链接是否会显示出来,但它是不可点击的。我怎样才能解决这个问题?