<a href="#" id="alicia" title="Contact Us"></a>
<span id="contact">Contact Us</span>
<a href="#" id="ash"></a>
<a href="#" id="vamp"><span>⤴</span></a>
a {
width: 150px;
height: 150px;
margin-right: 120px;
display: block;
border-radius: 50%;
box-sizing: border-box;
transition: .3s all ease-in;
float: left;
text-decoration: none;
border: 75px solid rgba(0, 0, 0, 1);
font-family: "Bauhaus 93", fantasy;
margin-top: 30px;
}
a:hover {
border: 0px solid rgba(0, 0, 0, 1);
}
a#alicia {
background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/alicia-demerson.jpg);
background-position: center;
background-size: 150px 150px;
margin-left: 30px;
}
a#alicia + span {
opacity: 1;
transition: .3s color linear;
margin-left: 30px;
margin-top: 20px;
}
a#alicia:hover + span {
opacity: 0;
}
a#ash {
background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/ash-s.jpg);
background-size: contain;
}
a#vamp {
background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/vamp.jpg);
background-position: center;
background-size: 150px 150px;
font-size: 60px;
position: relative;
margin-right: 0;
}
a#vamp span {
position: absolute;
top: -12px;
left: 0px;
font-size: 70px;
transform-origin: 5px 10px;
line-height: 70px;
transition: 1s all;
color: rgba(255, 255, 255, 0.5);
}
a#vamp:hover span {
transform: rotate(-360deg);
}
span#contact {
position: absolute;
font-family: "Bauhaus 93", fantasy;
color: #fff;
left: 28px;
top: 73px;
font-size: 22px;
pointer-events: none;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.