<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>文字穿透效果</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
--bg: url('https://picsum.photos/seed/picsum/1960/1280') no-repeat center/cover;
background: var(--bg);
height: 100vh;
}
.model {
background: rgba(0, 0, 0, 0.7);
width: 100%;
height: 100%;
}
.model h1 {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 12vw;
-webkit-text-stroke: 1px #fff;
background: var(--bg);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
}
</style>
</head>
<body>
<div class="model">
<h1>AMSTERDAM</h1>
</div>
</body>
</html>