zoukankan      html  css  js  c++  java
  • 图片点击放大效果

    <title>点击放大图片</title>
    <!--方法一--> <img src="/jscss/demoimg/wall.jpg" onclick="this.width+=50;this.height+=50">
    <!--方法二-->
    <img src="/jscss/demoimg/wall.jpg" onclick="this.style.zoom='2'">
    /* -*- Mode: C++; tab- 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
    /* This Source Code Form is subject to the terms of the Mozilla Public
    * License, v. 2.0. If a copy of the MPL was not distributed with this
    * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     
    /*
    * This CSS stylesheet defines the rules to be applied to any ImageDocuments,
    * including those in frames.
    */
     
    @media not print {
    .overflowing {
    cursor: zoom-out;
    }
     
    .shrinkToFit {
    cursor: zoom-in;
    }
    }
     
    @media print {
    /* We must declare the image as a block element. If we stay as
    an inline element, our parent LineBox will be inline too and
    ignore the available height during reflow.
    This is bad during printing, it means tall image frames won't know
    the size of the paper and cannot break into continuations along
    multiple pages. */
    img {
    display: block;
    }
    }
     
     
    <link id="olddefaultimagestyle-stylesheet" rel="stylesheet" olddefaultimagestyle-revision="2" href="data:text/css;charset=utf-8,@media%20not%20print%20%7B%0A%20%20img.decoded%20%7B%20background%3A%20white%3B%20%7D%0A%7D%0A%0A@media%20print%20%7B%20img%20%7B%20display%3A%20block%3B%20%7D%20%7D%0A">
    @media not print {
    img.decoded { background: white; }
    }
     
    @media print { img { display: block; } } 
  • 相关阅读:
    c# CLR无法从 COM 上下文 0x51cd20 转换为 COM 上下文 0x51ce90
    sql语法
    学籍管理系统
    【Android进阶】Android调用WebService的实现
    【Android进阶】自定义控件实现底部扇形展开菜单效果
    华为上机题汇总----java
    卡片游戏(栈和队列)
    18岁生日
    循环多少次?
    Flappy bird源代码(略吊)
  • 原文地址:https://www.cnblogs.com/oospace/p/4250457.html
Copyright © 2011-2022 走看看