CSS中如何把图片放大缩小CSS(Cascading Style Sheets)是一种用于网页样式设计的语言,其中包含了许多实用的功能,如图片的缩放。下面我们就来了解一下CSS如何实现图片的放大缩小。...
CSS中如何把图片放大缩小
CSS(Cascading Style Sheets)是一种用于网页样式设计的语言,其中包含了许多实用的功能,如图片的缩放。下面我们就来了解一下CSS如何实现图片的放大缩小。
首先,我们可以使用CSS中的“width”和“height”属性来调整图片的大小,具体使用方法如下:
img {
width: 50%;
height: auto;
}
img:hover {
transform: scale(1.2);
}
function zoomIn() {
var pic = document.getElementById("pic");
var currWidth = pic.clientWidth;
if (currWidth == 500) return false;
else pic.style.width = (currWidth + 50) + "px";
}
function zoomOut() {
var pic = document.getElementById("pic");
var currWidth = pic.clientWidth;
if (currWidth == 50) return false;
else pic.style.width = (currWidth - 50) + "px";
}