css实现鼠标悬浮图片文字层翻转显示动画效果代码
代码语言:html
所属分类:悬停
代码描述:css实现鼠标悬浮图片文字层翻转显示动画效果代码
代码标签: css 鼠标 悬浮 图片 文字 层 翻转 显示 动画
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/ionicons.css">
<style>
html {
height: 100%;
}
body {
background-color: #212121;
display: flex;
justify-content: center;
align-items: center;
flex-flow: wrap;
margin: 0;
height: 100%;
}
@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);
figure.snip1321 {
font-family: 'Raleway', Arial, sans-serif;
position: relative;
overflow: hidden;
margin: 10px;
min-width: 230px;
max-width: 315px;
width: 100%;
color: #000000;
text-align: center;
-webkit-perspective: 50em;
perspective: 50em;
}
figure.snip1321 * {
-webkit-box-sizing: padding-box;
box-sizing: padding-box;
-webkit-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
}
figure.snip1321 img {
max-width: 100%;
vertical-align: top;
}
figure.snip1321 figcaption {
top: 50%;
left: 20px;
right: 20px;
position: absolute;
opacity: 0;
z-index: 1;
}
figure.snip1321 h2,
figure.snip1321 h4 {
margin: 0;
}
figure.snip1321 h2 {
font-weight: 600;
}
figure.snip1321 h4 {
font-weight: 400;
text-transform: uppercase;
.........完整代码请登录后点击上方下载按钮下载查看
网友评论0