這個問題你用baidu搜索一下,有很多的教程。。
在成都做網(wǎng)站、成都網(wǎng)站建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)中從網(wǎng)站色彩、結(jié)構(gòu)布局、欄目設(shè)置、關(guān)鍵詞群組等細微處著手,突出企業(yè)的產(chǎn)品/服務(wù)/品牌,幫助企業(yè)鎖定精準用戶,提高在線咨詢和轉(zhuǎn)化,使成都網(wǎng)站營銷成為有效果、有回報的無錫營銷推廣。成都創(chuàng)新互聯(lián)公司專業(yè)成都網(wǎng)站建設(shè)10余年了,客戶滿意度97.8%,歡迎成都創(chuàng)新互聯(lián)客戶聯(lián)系。
;cl=3
1.
JAVASCRIPT經(jīng)常通過用戶提供的數(shù)據(jù)動態(tài)地生成條形圖??偟膩碚f這是由于條形圖的簡潔,它只是簡單地由不確定長度的圖形組成。我們使用JAVASCRIPT動態(tài)地畫出每個圖形,每個圖形的長度和用戶輸入的數(shù)據(jù)有關(guān)。
我們需要的是以一個1x15的圖形作為開始:
如果我想要拉長這幅圖象到 50x15 ,我使用 JavaScript 這樣做:
script
document.write(img src="poll.gif" width="50" height="15"')
/script
這就形成了動態(tài)圖形的基礎(chǔ)。這是一個我用JAVASCRIPT寫的一個簡單的腳本,它用來說明了圖形創(chuàng)建的例子。
script
var graphtext=new Array("Jill", "Bob", "Tony") //圖形項目
var graphvalue=new Array("60", "45", "95") //圖形值 (使用的是百分比,例如70=70%)
var barlength=200
for (i=0;igraphtext.length;i++)
document.write (graphtext[i]+': img src="poll.gif" width="'+graphvalue[i]/100*barlength+'" height="15"br')
/script
Jill:
Bob:
Tony
代碼的關(guān)鍵之處在于:width="'+graphvalue[i]/100*barlength+'"
這句話產(chǎn)生圖形的寬度,這基于用戶提供的數(shù)據(jù)。每個長度是輸入值的百分比,然后乘以條形長度的基本長度。
2.
使用圖形信息建立原始數(shù)據(jù)的圖形。只給復(fù)雜圖形的名稱賦予一定的值(值可以是絕對值或百分比),剩下的留給腳本就行了。
圖形信息允許你在同一個網(wǎng)頁上生成不止一個圖形文件,而這只需要多次的調(diào)用關(guān)鍵的函數(shù)。
Example:
Example 1 (using absolute values)
What is your favorite news site?
CNN
28%
MSNBC
36%
ABC News
11%
BBC News
25%
Total participants: 211
Example 2 (using percentage values)
What is your favorite news site?
CNN
28%
MSNBC
36%
ABC News
11%
BBC News
25%
因為EXAMPLE 1是用絕對值來創(chuàng)建的,腳本也在最后顯示了總值。
指導(dǎo)
步驟一:下面是圖形信息的兩個版本。第一個要求圖形值是絕對值,而第二個是相對值。
絕對方式:
What is your favorite news site?
script language="JavaScript1.2"
//JavaScript Graph-it! (Absolute)- by javascriptkit.com
//Visit JavaScript Kit () for script
//Credit must stay intact for use
var graphimage="poll.gif"
//DEFINE GRAPH VALUES [Item name, absolute value]
var graphx=new Array()
graphx[0]=["CNN",60]
graphx[1]=["MSNBC",75]
graphx[2]=["ABC News",24]
graphx[3]=["BBC News",52]
//YOU CAN DEFINE MULTIPLE GRAPHS, eg:
//var graphy=new Array()
function graphit(g,gwidth){
total=0
for (i=0;ig.length;i++)
total+=parseInt(g[i][1])
output='table border="0" cellspacing="0" cellpadding="0"'
for (i=0;ig.length;i++){
calpercentage=Math.round(g[i][1]*100/total)
calwidth=Math.round(gwidth*(calpercentage/100))
output+='trtd'+g[i][0]+'?/tdtdimg src="'+graphimage+'" width="'+calwidth+'" height="10" '+calpercentage+'%/td/tr'
}
output+='/table'
document.write(output+'brTotal participants: b'+total+'/b')
}
//CALL GRAPHIT FUNCTION
//graphit(NAME OF GRAPH ARRAY, MAXIMUM WIDTH IN PIXELS)
graphit(graphx,200)
/script
p align="center"font face="arial" size="-2"This free script provided by/fontbr
font face="arial, helvetica" size="-2"a href=""JavaScript
Kit/a/font/p
相對方式:
What is your favorite news site?
script language="JavaScript1.2"
//JavaScript Graph-it! (Percentage)- by javascriptkit.com
//Visit JavaScript Kit () for script
//Credit must stay intact for use
var graphimageP="poll.gif"
//DEFINE GRAPH VALUES [Item name, Percentage value]
var graphv=new Array()
graphv[0]=["CNN","28%"]
graphv[1]=["MSNBC","36%"]
graphv[2]=["ABC News","11%"]
graphv[3]=["BBC News","25%"]
//YOU CAN DEFINE MULTIPLE GRAPHS, eg:
//var graphz=new Array()
function graphitP(g,gwidth){
outputP='table border="0" cellspacing="0" cellpadding="0"'
for (i=0;ig.length;i++){
calwidthP=gwidth*(parseInt(g[i][1])/100)
outputP+='trtd'+g[i][0]+'?/tdtdimg src="'+graphimageP+'" width="'+calwidthP+'" height="10" '+g[i][1]+'/td/tr'
}
outputP+='/table'
document.write(outputP)
}
//CALL GRAPHIT FUNCTION
//graphitP(NAME OF GRAPH ARRAY, MAXIMUM WIDTH IN PIXELS)
graphitP(graphv,200)
/script
p align="center"font face="arial" size="-2"This free script provided by/fontbr
font face="arial, helvetica" size="-2"a href=""JavaScript
Kit/a/font/p
以上回答你滿意么?
[img]javascript 調(diào)用百度地圖API
%@?Page?Language="C#"?AutoEventWireup="true"?CodeFile="Default3.aspx.cs"?Inherits="Default3"?%
!DOCTYPE?html?PUBLIC?"-//W3C//DTD?XHTML?1.0?Transitional//EN"?""
html?xmlns=""
head?runat="server"
title/title
script?type="text/javascript"?src=";v=1.3"
/script
/head
body
p
地址:input?id="txtSearch"?type="text"?/
input?type="button"?value="搜索"?onclick="search()"?//p
div?style="width:?800px;?height:?600px;?border:?1px?solid?gray;"?id="container"
/div
/body
script?type="text/javascript"
function?$(id)?{
return?document.getElementById(id);?//定義$
}
var?map?=?new?BMap.Map("container");?//創(chuàng)建地圖
map.centerAndZoom(new?BMap.Point(116.330599,?39.95536),?10);?//初始化地圖
map.enableScrollWheelZoom();??//?開啟鼠標滾輪縮放????
map.enableKeyboard();?????????//?開啟鍵盤控制????
map.enableContinuousZoom();???//?開啟連續(xù)縮放效果????
map.enableInertialDragging();?//?開啟慣性拖拽效果??
map.addControl(new?BMap.NavigationControl());?//添加標準地圖控件(左上角的放大縮小左右拖拽控件)??
map.addControl(new?BMap.ScaleControl());??????//添加比例尺控件(左下角顯示的比例尺控件)??
map.addControl(new?BMap.OverviewMapControl());?//?縮略圖控件??
map.addControl(new?BMap.MapTypeControl());
var?city?=?new?BMap.LocalSearch(map,?{?renderOptions:?{?map:?map,?autoViewport:?true}?});?//地圖顯示到查詢結(jié)果處
function?search()?{
var?s?=?$("txtSearch").value;
city.search(s);?//查找城市
}
/script
/html
$('#reset').click(function(){//重置
$('img').css({"left":"0","top":"100px"});
});
$('#left').click(function(){//左
$('img').animate({
left:"-=10",
},500);
});
$('#right').click(function(){//右
$('img').animate({
left:"+=10",
},500);
});
$('#up').click(function(){//上
$('img').animate({
top:"-=10",
},500);
});
$('#down').click(function(){//下
$('img').animate({
top:"+=10",
},500);
});
給圖加上想對定位