• CSS3 实现DIV放大和缩小


    .zoom
    {
    transform: scale(1,1);
    -ms-transform: scale(1,1); /* IE 9 */
    -webkit-transform: scale(0.8,0.8); /* Safari and Chrome */
    }
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
    div:first-of-type{
     200px;
    height: 200px;
    background: #006400;
    /*使 div 元素看上去像一个按钮:*/
    appearance: button;
    
    /*background-attachemnt: 背景定位*/
    /*取值: scroll | fixed | inherit
    scroll: 随着页面的滚动轴背景图片将移动
    fixed: 随着页面的滚动轴背景图片不会移动
    inherit: 继承*/
    background-attachment: scroll;
    
    border: 10px black dashed;
    
    /*背景填充方法*/
    background-clip: padding-box;
    
    /*阴影方法*/
    /*内阴影 inset*/
    box-shadow: 10px 10px 10px black inset; 
    
    text-shadow: 10px 10px 10px red;
    
    /*偏移方法*/
    /*旋转方法*/
    transform: rotate(30deg);
    /*移动位置 左右 上下*/
    transform: translate(100px,100px);
    /*规模效果*/
    transform: scale(2);
    /*变形效果*/
    transform:skew(20deg);
    
    /*变化持续时间*/
    transition: 5s;
    }
    div{
     200px;
    height: 200px;
    background: linear-gradient(#f4f4f4,#000000);
    transition: 5s;
    
    /*行类块标签*/
    display: inline-block;
    }
    
    
    div:hover{
    transform: rotateX(45deg) translate(100px,100px) scale(2) skew(45deg);
    }
    </style>
    </head>
    <body>
    <div>道可道,非常道</div>
    <div>道可道,非常道</div>
    <div>道可道,非常道</div>
    </body>
    </html>


  • 相关阅读:
    使用CDN后,PHP如何获取用户的真是IP?
    git常用命令整理
    svn常用命令
    Ansible 运维自动化(一)
    grep 简单笔记
    sed 笔记
    awk命令笔记
    无限极分类(一)获得树结构
    php自定义函数求取平方根
    class path resource [config.xml] cannot be opened because it does not exist
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13317534.html
Copyright © 2020-2023  润新知