changing an image on hover with css is a simple process that can add an extra layer of interactivity to the website. here, we will learn step-by-step guide to changing an image on hover with css −
prepare the images使用css在悬停时更改图像的第一步是拥有您想要使用的两个图像:默认图像和悬停图像。确保这两个图像都保存在您的网站上,并且您知道每个图像的url。
将默认图像添加到您的html中使用img标签并指定图像的源(src)。例如 -
<img src=default-image.jpg alt=default>
在你的css中添加一个悬停规则in the css file, we add a rule to change the image on hover. we will do this by targeting the div tag and specifying a :hover pseudo-class. for example −
img:hover { content: url(hover-image.jpg);}
examplehere is an example to change the image on hover using css.
<html><head> <title>change image on hover in css</title> <style> body{ text-align:center; } div { width: 250px; height: 195px; background: url(https://www.tutorialspoint.com/dip/images/black_and_white.jpg) norepeat; display: inline-block; } div:hover { background: url(https://www.tutorialspoint.com/dip/images/einstein.jpg) no-repeat; } </style></head><body> <h2>change image on hover using css</h2> <div class=card></div></body></html>
conclusion使用css在悬停时更改图像是一种简单而有效的方式,可以为网站增加额外的参与度。这是一个很好的方式来为用户创建互动体验,可以帮助他们更长时间地停留在网站上,提高他们的整体满意度。
以上就是如何使用 css 更改悬停时的图像?的详细内容。
