请马上登录,朋友们都在花潮里等着你哦:)
您需要 登录 才可以下载或查看,没有账号?立即注册
x
<style>
.box {
width: 307px;
height: 360px;
background:
url('https://s21.ax1x.com/2025/08/18/pVBC4Cn.jpg') no-repeat center/cover,
repeating-linear-gradient(0deg, rgba(255,255,255,.25) 0 1px, transparent 1px var(--limit)),
repeating-linear-gradient(90deg, rgba(255,255,255,.15) 0 1px, transparent 1px var(--limit))
;
background-blend-mode: color, color;
border: 1px solid gray;
margin: 20px auto;
position: relative;
--limit: 20px;
}
.box:hover { --limit: 80px; }
</style>
<div class="box"></div>
|