html实现各种好看的鼠标滑过图片特效模板
在HTML中实现鼠标滑过图片特效,可以使用CSS来添加视觉效果。以下是一些实现鼠标滑过图片特效的模板示例:
- 淡入效果:
<!DOCTYPE html>
<html>
<head>
<style>
img:hover {
opacity: 0.5;
transition: opacity 0.5s;
}
</style>
</head>
<body>
<img src="image.jpg" alt="Image" width="200" height="200">
</body>
</html>
- 放大效果:
<!DOCTYPE html>
<html>
<head>
<style>
img:hover {
transform: scale(1.1);
transition: transform 0.5s;
}
</style>
</head>
<body>
<img src="image.jpg" alt="Image" width="200" height="200">
</body>
</html>
- 旋转效果:
<!DOCTYPE html>
<html>
<head>
<style>
img:hover {
transform: rotate(10deg);
transition: transform 0.5s;
}
</style>
</head>
<body>
<img src="image.jpg" alt="Image" width="200" height="200">
</body>
</html>
- 阴影效果:
<!DOCTYPE html>
<html>
<head>
<style>
img:hover {
box-shadow: 0 0 8px #000;
transition: box-shadow 0.5s;
}
</style>
</head>
<body>
<img src="image.jpg" alt="Image" width="200" height="200">
</body>
</html>
这些模板可以根据需要进行修改和扩展,以实现不同的鼠标滑过图片特效。
评论已关闭