在电商类的网站中,点击商品页,一般会有放大镜以便于放大查看商品细节,用js来实现这个放大镜的效果。
文章目录
一、展现效果
二、实现代码
1、html+css
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
.little{
width: 640px;
height: 400px;
border: 1px solid black;
position: relative;
}
/* 小图 */
.little img{
width: 640px;
height: 400px;
}
/* 小放大镜 */
.little .mark{
width: 320px;
height: 200px;
background-color: yellow;
opacity: 0.5;
position: absolute;
left: 0;
top: 0