Skip to content

Instantly share code, notes, and snippets.

@tango238
tango238 / gradient_background.html
Created May 29, 2011 15:03
[HTML5] 背景をグラデーションにする
<!DOCTYPE HTML>
<html lang="ja">
<head>
<title>グラデーションの背景</title>
<meta charset="utf-8">
</head>
<body>
<script type="text/javascript">
@tango238
tango238 / gist:1012592
Created June 7, 2011 16:20
Ti.App.twitterApi
Ti.include("lib/twitter_api.js");
Titanium.UI.setBackgroundColor('#000');
var tabGroup = Titanium.UI.createTabGroup();
var win = Titanium.UI.createWindow({
title:'twitter timeline viewer',
tabBarHidden:true,
backgroundColor:'#fff'
});
var tab1 = Titanium.UI.createTab({
@tango238
tango238 / dragdrop.html
Created August 25, 2011 02:06
[HTML5]Drag&Drop
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>Drag & Drop</title>
<body>
<section id="wrapper">
<header>
<h1>Drag & Drop</h1>
</header>
@tango238
tango238 / localstorage.html
Created August 26, 2011 03:17
[HTML5]Local Storage
<!DOCTYPE HTML>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Local Storage</title>
</head>
<style>
p.success {
background-color: #0f0;
}
@tango238
tango238 / textselection.html
Created August 26, 2011 05:08
[HTML5]Text Selection
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>Text Selection</title>
<style>
textarea {
width: 600px;
height: 150px;
border: 3px solid #cccccc;
@tango238
tango238 / nowebworkers.html
Created August 26, 2011 08:35
[HTML5] No WebWorkers
<!DOCTYPE HTML>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>No WebWorkers</title>
</head>
<body>
<section id="wrapper">
<header>
<h1>No WebWorkers</h1>
@tango238
tango238 / webworkers.html
Created August 26, 2011 08:49
[HTML5]WebWorkers
<!DOCTYPE HTML>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>WebWorkers</title>
</head>
<body>
<section id="wrapper">
<header>
<h1>WebWorkers</h1>
@tango238
tango238 / canvas.html
Created August 26, 2011 21:44
[HTML5]Canvas
<!DOCTYPE HTML>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Canvas</title>
<style>
#canvas {
border: #000 1px solid;
}
</style>
@tango238
tango238 / form.html
Created August 26, 2011 21:54
[HTML5]Form
<!DOCTYPE HTML>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Form API</title>
</head>
<body>
<section>
<header>
<h1>Form API</h1>
@tango238
tango238 / html5.html
Created August 26, 2011 22:08
[HTML5]雛形
<!DOCTYPE HTML>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Paint</title>
</head>
<body>
<header>
<h1>Paint</h1>
</header>