This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- title: OGP html example --> | |
<!doctype html> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr" xmlns:og="http://ogp.me/ns#" xmlns:mixi="http://mixi-platform.com/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<meta property="og:title" content="OGP test [title here] OGP test [title here] OGP test [title here] OGP test [title here] OGP test [title here] OGP test [title here] OGP test [title here] OGP test [title here] OGP test [title here] OGP test [title here] OGP test [title here]" /> | |
<meta property="og:type" content="website" /> | |
<meta property="og:url" content="http://dl.dropbox.com/u/268240/hamalogFiles/ogp/index.html" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p{ | |
border:1px solid red; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a:hover, | |
a:focus, | |
a.state-hover{ | |
background:#a00; | |
color:#fff; | |
} | |
a:active, | |
a.state-active{ | |
background:#f00; | |
color:#fff; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.js .alt{ | |
display:none; | |
} | |
.test{ | |
border:1px solid #000; | |
margin:0 0 10px; | |
padding:10px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.mod-fbcomments{ | |
float:left; | |
margin:5px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*{ | |
margin:0; | |
padding:0; | |
} | |
.balloon{ | |
position:absolute; | |
left:0; | |
top:0; | |
padding:.5em .8em; | |
background:#000; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*{ | |
margin:0; | |
padding:0; | |
} | |
body{ | |
padding:30px; | |
} | |
.face{ | |
border:1px solid #000; | |
position:relative; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 測地系変換 */ | |
function convertLatLng(params){ | |
var x = params.x / 60 / 60; | |
var y = params.y / 60 / 60; | |
y = y - y * 0.00010695 + x * 0.000017464 + 0.0046017; | |
x = x - y * 0.000046038 - x * 0.000083043 + 0.010040; | |
return { | |
lat: y, | |
lng: x |