html代码表白_学会这个你还没对象?程序员浪漫表白代码(JS+CSS+HTML)附带源码...

0a342333b2194e6f62d2a02360ad227d.png

感谢键盘,十年如一日的守护我的双手!

也许程序猿不善言表,

温情藏匿于外冷内热之中,

但那些看起来冰冷的代码,

也能组合成最浪漫优美的情话,

今天我们就来看看程序员是如何把情话放进浪漫的代码。

下面这是最终效果静态展示,试试有惊喜哦!

5df1c7647e38da388976d13032234f48.png

话不多说,以下是HTML:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Pictures</title>
    <link rel="stylesheet" href="css/demo.css">
</head>

<body>
    <div class="wrapper">
        <ul>
            <li>
                <div class='picBox'>
                    <div class='show'>
                        <img height='180px' width='180px' src='img/pic1.png'>
                    </div>
                    <div class='hide'>
                        <h3>
                           我❥
                        </h3>
                    </div>
                </div>
            </li>
            <li>
                <div class='picBox'>
                    <div class='show'>
                        <img height='180px' width='180px' src='img/pic2.png'>
                    </div>
                    <div class='hide'>
                        <h3>
							好❥
                        </h3>
                    </div>
                </div>
            </li>
            <li>
                <div class='picBox'>
                    <div class='show'>
                        <img height='180px' width='180px' src='img/pic3.png'>
                    </div>
                    <div class='hide'>
                        <h3>
                           喜❥
                        </h3>
                    </div>
                </div>
            </li>
            <li>
                <div class='picBox'>
                    <div class='show'>
                        <image height='180px' width='180px' src='img/pic4.png'></image>
                    </div>
                    <div class='hide'>
                        <h3>
                           欢❥
                        </h3>
                    </div>
                </div>
            </li>
            <li>
                <div class='picBox'>
                    <div class='show'>
                        <image height='180px' width='180px' src='img/pic2-1.png'></image>
                    </div>
                    <div class='hide'>
                        <h3>
                            你❥
                        </h3>
                    </div>
                </div>
            </li>
            <li>
                <div class='picBox'>
                    <div class='show'>
                        <image height='180px' width='180px' src='img/pic2-2.png'></image>
                    </div>
                    <div class='hide'>
                        <h3>
                            跟❥
                        </h3>
                    </div>
                </div>
            </li>
            <li>
                <div class='picBox'>
                    <div class='show'>
                        <image height='180px' width='180px' src='img/pic2-3.png'></image>
                    </div>
                    <div class='hide'>
                        <h3>
                           我❥
                        </h3>
                    </div>
                </div>
            </li>
            <li>
                <div class='picBox'>
                    <div class='show'>
                        <image height='180px' width='180px' src='img/pic2-4.png'></image>
                    </div>
                    <div class='hide'>
                        <h3>
                          在❥
                        </h3>
                    </div>
                </div>
            </li>
            <li>
                <div class='picBox'>
                    <div class='show'>
                        <image height='180px' width='180px' src='img/pic3-1.png'></image>
                    </div>
                    <div class='hide'>
                        <h3>
                            一❥
                        </h3>
                    </div>
                </div>
            </li>
            <li>
                <div class='picBox'>
                    <div class='show'>
                        <image height='180px' width='180px' src='img/pic3-2.png'></image>
                    </div>
                    <div class='hide'>
                        <h3>
                            起❥
                        </h3>
                    </div>
                </div>
            </li>
            <li>
                <div class='picBox'>
                    <div class='show'>
                        <image height='180px' width='180px' src='img/pic3-3.png'></image>
                    </div>
                    <div class='hide'>
                        <h3>
                           好❥
                        </h3>
                    </div>
                </div>
            </li>
            <li>
                <div class='picBox'>
                    <div class='show'>
                        <image height='180px' width='180px' src='img/pic3-4.png'></image>
                    </div>
                    <div class='hide'>
                        <h3>
                            吗❥
                        </h3>
                    </div>
                </div>
            </li>
        </ul>
    </div>
	
    <script src="js/jquery.min.js"></script>
    <script src="js/demo.js"></script>
	
</body>
</html>

以下是CSS:

*{
    margin:0;
}
body{
	background-color: #2F2F2F;
}
.wrapper{
    max-width:900px;
    margin:80px auto;
}
.wrapper li{
    position: relative;
    width: 180px;
    height: 180px;
    list-style:none;
    margin: 5px;
    display: inline-block;
    perspective: 300px;
  }
  .picBox{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform-style: preserve-3d;
    transform-origin: 50% 50% -90px;
    animation: 200ms ease-out 0ms 1 normal forwards;
  }

.show,
.hide{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
.hide{
    color:#fff;
    background-color:#000;
    text-align:center;
    line-height:180px;
    transform: translate3d(0,0,-1px);
    /* 3D空间内移动一个元素的位置 */
}


.in-top .hide,
.out-top .hide
 {
    transform-origin: 0% 100%;
    transform: translate3d(0, -100%, 0) rotate3d(1,0,0,90deg);
}
.in-top .picBox{
    animation-name: in-top;
    animation-play-state: running;
}
.out-top .picBox{
    animation-name: out-top;
    animation-play-state: running;
}
@keyframes in-top {
    from  {transform: rotate3d(0,0,0,0deg)}
    to    {transform: rotate3d(-1,0,0,90deg)}
} 

@keyframes out-top {
    from {transform: rotate3d(-1,0,0,90deg)}
    to   {transform: rotate3d(0,0,0,0deg)}
}
.in-right .hide,
.out-right .hide {
          transform-origin: 0% 0%;
          transform: translate3d(100%, 0, 0) rotate3d(0,1,0,90deg);
}
.in-right .picBox{
    animation-name: in-right;
    animation-play-state: running;
}
.out-right .picBox{
    animation-name: out-right;
    animation-play-state: running;
}
@keyframes in-right {
    from  {transform: rotate3d(0,0,0,0deg)}
    to    {transform: rotate3d(0,-1,0,90deg)}
}

@keyframes out-right {
    from  {transform: rotate3d(0,-1,0,90deg)}
    to    {transform: rotate3d(0,0,0,0deg)}
}

.in-bottom .hide,
.out-bottom .hide {
          transform-origin: 0% 0%;
          transform: translate3d(0, 100%, 0) rotate3d(-1,0,0,90deg);
}
.in-bottom .picBox{
    animation-name: in-bottom;
    animation-play-state: running;
}
.out-bottom .picBox{
    animation-name: out-bottom;
    animation-play-state: running;
}
@keyframes in-bottom {
    from  {transform: rotate3d(0,0,0,0deg)}
    to    {transform: rotate3d(1,0,0,90deg)}
}
@keyframes out-bottom {
    from  {transform: rotate3d(1,0,0,90deg)}
    to    {transform: rotate3d(0,0,0,0deg)}
}
.in-left .hide,
.out-left .hide {
          transform-origin: 100% 0;
          transform: translate3d(-100%,0,0) rotate3d(0,-1,0,90deg);
}
@keyframes in-left {
    from  {transform: rotate3d(0,0,0,0deg)}
    to    {transform: rotate3d(0,1,0,90deg)}
}
@keyframes out-left {
    from  {transform: rotate3d(0,1,0,90deg)}
    to    {transform: rotate3d(0,0,0,0deg)}
}
.in-left .picBox{
          animation-name: in-left;
          animation-play-state: running;
}
.out-left .picBox{
          animation-name: out-left;
          animation-play-state: running;
}

在这里推荐下python的学习交流平台,欢迎大家一起进步

正在跳转​jq.qq.com
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值