2017-01-03から1日間の記事一覧

JavaScript タブメニュー

index.html ----- <html lang="ja"> <head> <meta charset="utf-8"> <title>tab JS</title> <style> body { padding: 0; margin: 0; font-family: Verdana, sans-serif; } .container { padding: 0; margin: 30px auto; width: 500px; background: #dce0…</meta></head></html>

JavaScript おみくじ

<html lang="ja"><head> <meta charset="utf-8"> <title>おみくじ</title> <style> body { background: #e0e0e0; text-align: center; font-size: 16px; color: #fff; font-family: Arial, sans-serif; } #result { margin: 30px auto; width: 180px; height: 180px; border-radius: 50%; line-height: 180px; font-s…</meta></head></html>

MongoDB

show dbs; // データベースを確認 help; // コマンド一覧 db.createCollection("テーブル名(コレクション)"); // テーブル作成 db.stats(); // テーブルの中身を確認 (コレクション) db.dropDatabase(); // データベースの削除 show.collections; // テーブ…