Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<div class="wrap">
  <div class="gallery">Gallery</div>
  <div class="back">
    <a href="" class="link_a">Art</a>
    <a href="" class="link_b">Art2</a>
  </div>
</div>
</body>
</html>
 
.gallery {
  font-size:4em;color:orange;
}
.gallery a:hover {
  color:orange;
  position:absolute;
  -webkit-transition: all .1s ease-in-out;
  -webkit-perspective:600px;
  -webkit-transform-style: preserve-3d;
}
.back {
  font-size:4em;
  position:absolute;
  top:2px;
}
.back a:hover {
  display:block;
  color:grey;
  -webkit-transform: rotateX(180deg);
  -webkit-perspective: 500px;
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers