html中图片以中心放大的代码如下:
<div style=" width:300px height:300pxmargin-left:auto
margin-right:auto overflow:hidden margin-top:100px">
<img id="img" onmouseover="bigger()" onmouseout="smaller()"
src="http://mat1.gtimg.com/www/images/qq2012/guanjia2.png"
style="cursor:pointerwidth:300pxheight:300px
transition:all 1s ease-out 0s perspective-origin:bottom"/>
<script type="text/javascript">
var img = document.getElementById('img')
function bigger(){
img.style.width = '400px'
img.style.height = '400px'
img.style.marginTop = "-50px"
img.style.marginLeft = "-50px"
}
function smaller(){img.style.width = '300px'
img.style.height = '300px'
img.style.marginTop = "0px"
img.style.marginLeft = "0px"
}
</script>
扩展资料:
在html中用js实现鼠标指向图片时图片放大的效果的代码如下:
<img id="img" onmouseover="bigger()" onmouseout="smaller()"
src="你的图片路径" style="width:100pxheight:100px" />
<script type="text/javascript">
var img = document.getElementById('img')
function bigger(){ img.style.width = '400px' img.style.height = '400px' }
function smaller(){ img.style.width = '100px' img.style.height = '100px' }
</script>
在网页中插入图片html图片代码方法:
步骤:
一、html图片标签语法
<img src="divcss-logo-201305.gif" width="165" height="60" />img介绍:
src 后跟的是图片路径地址
width 设置图片宽度
height 设置图片高度
二、具体html 图片显示实例
在html源代码中分别插入三张图片,一张原始大、一张将宽度高度改小小、一张将宽度高度改大。
1、实例完整html代码:
<!DOCTYPE html><html>
<head>
<meta charset="utf-8" />
<title>图片插入html 在线演示</title>
</head>
<body>
<p>原始大图片</p>
<p>
<img src="divcss-logo-201305.gif" width="165" height="60" />
</p>
<p>改小图片</p>
<p>
<img src="divcss-logo-201305.gif" width="105" height="30" />
</p>
<p>改大图片</p>
<p>
<img src="divcss-logo-201305.gif" width="365" height="120" />
</p>
</body>
</html>
2、html插入图片实例截图
3、在线演示:
在html网页中显示图片,插入图片,通过使用img标签来实现,通过也可以将图片作为CSS网页背景图片显示插入到Html网页中(css 背景图片)。