SOURCE

console 命令行工具 X clear

                    
>
console
<div class="container">
  <div class="card">
    <img src="https://i.hizliresim.com/SZIYQj.png">
    <div class="content">
      <i class="fas fa-info"></i>
      <p>Hello, My Name is <br><br>Batuhan</p>
    </div>
  </div>
</div>
* {
  box-sizing: border-box;
}

html, body {
  height: 100vh;
  background: #cecece;
  font-family: 'Open Sans', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  position: absolute;
  height: 400px;
  width: 300px;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  box-shadow: 10px 0 50px rgba(0,0,0,.3);
}

.card img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.content {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  background-color: #000000;
  clip-path: circle(50px at 0 0);
  transition: all 0.5s;
  cursor: pointer;
}

p {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff;
  transform: translate(-50%, -50%);
}

i {
  position: absolute;
  top: 11px;
  left: 15px;
  color: #ffffff;
  opacity: 1;
  transition: all 0.5s;
}

.content:hover {
  border-radius: 10px;
  clip-path: circle(500px at 0 0);
}

.content:hover i {
  opacity: 0;
  transform: translateXY(100px);
}

本项目引用的自定义外部资源