PHP程序员站--PHP编程开发平台
 当前位置:主页 >> 网页制作 >> Javascript >> 

对网页局部放大缩小(支持IE、chrome浏览器)

对网页局部放大缩小(支持IE、chrome浏览器)

来源:  作者:  发布时间:2010-12-21
对网页局部放大缩小js代码 以下为引用的内容: !DOCTYPE html P

对网页局部放大缩小js代码

以下为引用的内容:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript" src="jquery-1.4.2.min.js"></script>
<script>
var i=0; 
var tdata={head:[{name:'名词'},{name:'数量'}],data:[{name:'语文',count:12},{name:'数学',count:30}]}; 
function addNewrow(){ 
 $("#tt").append("<tr id='tr_"+i+"'><td>"+i+"<input name='fdsa' type='text'></td><td><button onclick='removeThis("+i+");'>删除</button></td></tr>"); 
 i++; 

function removeThis(ids){ 
$("#tr_"+ids).remove(); 
i--; 

function reposition(){ 
 $("#bottomdiv").css("margin-top",$(window).height()-$("#bottomdiv").height()-2); 
 $("#bottomdiv").css("margin-left",$(window).width()-$("#bottomdiv").width()-2); 
 $("#tt tbody").append("<tr>"); 
 $.each(tdata.head,function(i,row){ 
 $("#tt tbody").append("<th>"+row.name+"</th>"); 
 }); 
 $("#tt tbody").append("</tr>"); 
 $.each(tdata.data,function(i,row){ 
 $("#tt tbody").append("<tr><td>"+row.name+"</td><td>"+row.count+"</td></tr>"); 
 
 }); 



$(function (){reposition(); 
$("#div_animate").animate({ 
   height: 'toggle', opacity: 'toggle' 
 }, "slow");  
 $("#div_animate").animate({ 
   height: 'show', opacity: 'show' 
 }, "slow");  
}); 
var zoom=10; 
function maxZoom(){ 
zoom+=5; 
$("#zoomdiv").css("zoom",zoom/10); 

function minZoom(){ 
if(zoom<=0){ 
 zoom=5; 
}else{ 
zoom-=5; 

$("#zoomdiv").css("zoom",zoom/10); 

var inobj=null; 
function inputTime(){ 
 

</script>
<style type="text/css">
body{ margin:0 0 0 0;} 
button{padding-top:3px;} 
input {padding-top:3px;} 

#ddiv{overflow:auto;float:left;width:800px;height:300px;} 
</style>
</head>
<body>
<button onclick="addNewrow();">增加</button><button onclick="maxZoom();">放大</button><button onclick="minZoom();">缩小</button>
<div id="ddiv">
<div id="zoomdiv">
<table id="tt">
<tbody>
</tbody>
</table>
<input type="button" value="按钮">
 
</div>
</div>
<div id="timeseler">
<select id="hour">
<script>for(var i=0;i<24;i++){ 
document.write("<option>"+(i<10?("0"+i):i)+"</option>"); 
}</script>
</select>
<select id="minis">
<script>for(var i=0;i<60;i++){ 
document.write("<option>"+(i<10?("0"+i):i)+"</option>"); 

}</script>
</select>
<input type="button" onclick="inputTime();" value="确认">
</div>
<div id="div_animate" style="width:100px;height:100px;background-color:red;"> </div>
</body>
</html>


延伸阅读:
按比例放大缩小图片的函数
让文章里图片自动缩小的几种方法
JS特效代码:图片点击放大特效
Tags: 网页   IE   Chrome   浏览器  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号