zoukankan      html  css  js  c++  java
  • 一张图片分为2部分显示带有鼠标变换效果


     一张图片分为2部分显示带有变换效果
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>无标题文档</title>
    <style>
    .d1 {
     background-image: url(images/redhat.png);
    }
    .d2 {
     background-image: url(images/redhat2.png);
    }
    .d3 {
     background-image: url(images/redhat3.png);
    }
    .d4 {
     background-image: url(images/redhat4.png);
    }
    .ad {
      220px;
     margin-left: 10px;
     height: 100px;
     border: 1px solid gray;
     opacity: 0.5;   /*透明效果,1为不透明*/
     -webkit-transition: all 0.2s ease-in 0;
     float: left;
    }
    .ad:hover {
     opacity: 1;
     background-position: right center;
    }
    </style>
    </head>
    <body>
    <div class="ad d1"></div>
    <div class="ad d2"></div>
    <div class="ad d3"></div>
    <div class="ad d4"></div>
    </body>
    </html>

  • 相关阅读:
    redis 高级
    redis连接
    redis脚本
    Redis事务
    redis发布订阅
    加一
    C语言从代码中加载动态链接库
    GCC编译器
    Vim编辑器基础
    Linux用户的创建与授权及修改密码
  • 原文地址:https://www.cnblogs.com/lsr111/p/4414276.html
Copyright © 2011-2022 走看看