用JavaScript实现图片点击放大再次点击恢复代码如下:
知识拓展:JavaScript 是目前所有主流浏览器上唯一支持的脚本语言,这也是早期JavaScript的唯一用途。其主要作用是在不与服务器交互的情况下修改HTML页面内容,因此其最关键的部分是DOM(文档对象模型),也就是HTML元素的结构。
通过Ajax可以使HTML页面通过JavaScript,在不重新加载页面的情况下从服务器上获取数据并显示,大幅提高用户体验。通过JavaScript,使Web页面发展成胖客户端成为可能。
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>