答案 0 :(得分:0)
您可以将事件侦听器附加到一个(图像或链接)以侦听鼠标悬停。启动一个函数,它将找到匹配ID的元素(图像和链接匹配,即图像id =“image1”,链接id =“link1”)并更改CSS。
答案 1 :(得分:0)
纯CSS和HTML绝对可以用于创建类似于您链接到的网站的效果。
查看this fiddle。
a
元素中。ID
。HTML:
<a href="www.google.com">
Hello there.
<img id="img1" src="[SOURCE]" alt="Be Happy!" />
</a>
CSS:
/* The Important Stuff */
#img1 {
position:absolute;
bottom:20px;
right:45px;
}
a:hover {
text-decoration:none;
}
a:hover img {
opacity:.8;
}
/* The Unimportant Stuff */
body {
background-color:black;
}
a {
color:white;
}