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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.css" /> | |
<style> | |
html { width: 100%; height: 100%; } | |
body { width: 100%; height: 100%; margin: 0; } | |
#map { width: 100%; height: 100%; } |
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
<!doctype html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Pure CSS Accordion with :checked</title> | |
<link rel="stylesheet" href="style.css"> | |
<style> | |
</style> | |
</head> |
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
<!doctype html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> --> | |
<title>css hack for IE11</title> | |
<style> | |
@media all and (-ms-high-contrast:none) { | |
*::-ms-backdrop, .selector-media-01 { | |
color: blue; |
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
<!doctype html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> --> | |
<title>css hack</title> | |
<style> | |
body { font-family: monospace; } | |
/* IE11 */ _:lang(x)::-ms-backdrop, .selector-0000 { color: blue; } |
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
<!doctype html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> --> | |
<title>css hack</title> | |
<style> | |
body { font-family: monospace; } | |
summary { list-style: none; } | |
summary::-webkit-details-marker { display:none; } |
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
14159 | 26535 | 89793 | 23846 | 26433 | 83279 | 5028 | 841971 | 69399 | 37510 | |
---|---|---|---|---|---|---|---|---|---|---|
58209 | 74944 | 59230 | 78164 | 06286 | 20899 | 8628 | 034825 | 34211 | 70679 | |
82148 | 08651 | 32823 | 06647 | 09384 | 46095 | 5058 | 223172 | 53594 | 08128 | |
48111 | 74502 | 84102 | 70193 | 85211 | 05559 | 6446 | 229489 | 54930 | 38196 | |
44288 | 10975 | 66593 | 34461 | 28475 | 64823 | 3786 | 783165 | 27120 | 19091 | |
45648 | 56692 | 34603 | 48610 | 45432 | 66482 | 1339 | 360726 | 02491 | 41273 | |
72458 | 70066 | 06315 | 58817 | 48815 | 20920 | 9628 | 292540 | 91715 | 36436 | |
78925 | 90360 | 01133 | 05305 | 48820 | 46652 | 1384 | 146951 | 94151 | 16094 | |
33057 | 27036 | 57595 | 91953 | 09218 | 61173 | 8193 | 261179 | 31051 | 18548 | |
07446 | 23799 | 62749 | 56735 | 18857 | 52724 | 8912 | 279381 | 83011 | 94912 |
This file has been truncated, but you can view the full file.
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
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using UnityEngine; | |
using UnityEngine.Profiling; | |
public class script : MonoBehaviour | |
{ |
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
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.Profiling; | |
public class script : MonoBehaviour | |
{ | |
/// <summary>指の状態</summary> | |
private enum Finger |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>-ms-vendor-prefix</title> | |
<style> | |
body { font-family: monospace; } | |
input:nth-of-type( 1)[type="text"]::-ms-clear { display: initial; } | |
input:nth-of-type( 2)[type="text"]::-ms-clear { display: none; } |