<script type="text/javascript">
function addSite() {
try{
window.external.msAddSiteMode();
}catch(e){
alert("此功能僅適用於 Internet Explorer 9.");
}
}
</script>
<button onclick="addSite();">釘我</button>
2011年11月22日 星期二
點選按鈕提示IE9釘選功能
2011年11月10日 星期四
2011年11月7日 星期一
2011年10月17日 星期一
css3 翻轉效果
#logo {width:200px; height:64px; background:url('../images/logo.png') top left no-repeat;
-webkit-animation-name: y-spin;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
}
@-webkit-keyframes y-spin {
0% { -webkit-transform: rotateY(0deg); }
50% { -webkit-transform: rotateY(180deg); }
100% { -webkit-transform: rotateY(360deg); }
}
2011年10月13日 星期四
2011年10月12日 星期三
透過google map由地址查詢經緯度
參考文件
http://code.google.com/intl/zh-TW/apis/maps/documentation/javascript/v2/services.html
測試 http://maps.google.com/maps/geo?q=%E5%8F%B0%E5%8C%97%E5%B8%82%E5%8D%97%E6%B8%AF%E5%8D%80%E4%B8%89%E9%87%8D%E8%B7%AF66%E8%99%9F&output=json&sensor=true
回傳
測試 http://maps.google.com/maps/geo?q=%E5%8F%B0%E5%8C%97%E5%B8%82%E5%8D%97%E6%B8%AF%E5%8D%80%E4%B8%89%E9%87%8D%E8%B7%AF66%E8%99%9F&output=json&sensor=true
回傳
{
"name": "台北市南港區三重路66號",
"Status": {
"code": 200,
"request": "geocode"
},
"Placemark": [ {
"id": "p1",
"address": "115台灣台北市南港區三重路66號",
"AddressDetails": {
"Accuracy" : 8,
"Country" : {
"AdministrativeArea" : {
"AdministrativeAreaName" : "台北市",
"Locality" : {
"DependentLocality" : {
"DependentLocalityName" : "三重里",
"PostalCode" : {
"PostalCodeNumber" : "115"
},
"Thoroughfare" : {
"ThoroughfareName" : "三重路66號"
}
},
"LocalityName" : "南港區"
}
},
"CountryName" : "台灣",
"CountryNameCode" : "TW"
}
},
"ExtendedData": {
"LatLonBox": {
"north": 25.0587660,
"south": 25.0560680,
"east": 121.6156030,
"west": 121.6129050
}
},
"Point": {
"coordinates": [ 121.6142540, 25.0574170, 0 ]
}
} ]
}
2011年9月9日 星期五
Facebook app 調整canvas的寬高
Facebook app 調整canvas的寬高
<div id="fb-root">
</div>
<script src="//connect.facebook.net/zh_TW/all.js">
</script>
<script>
FB.init({
appId : 'facebook_app_id',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
oauth : true // enables OAuth 2.0
});
FB.Canvas.setSize({ width: 760, height: 1000 });
</script>
訂閱:
文章 (Atom)