首页 > 代码库 > 图片点击放大效果
图片点击放大效果
<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-width: 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;
}
}
@media not print {
img.decoded { background: white; }
}
@media print { img { display: block; } }
图片点击放大效果
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。