3d照片墙效果

代码语言:html

所属分类:三维

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">
<head>

<title> Realistic 3D Photo Cards (Hover Effect, Vue.Js)</title>

<style>
.f_ref {
  height: 50px;
  width: 50px;
  background-color: #000;
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: block;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 100%;
  transition: transform .2s ease;
}
.f_ref:hover {
  transform: scale(1.2)
}
.f_ref > img {
  height: 100%;
}
  body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  fle.........完整代码请登录后点击上方下载按钮下载查看

网友评论0