タグ

dateに関するstolpnikのブックマーク (4)

  • 「iPhoneアプリの数値計測したいんだけど」と言われた君へ - Qiita

    よくあるディレクター(数値を追ってる人) からの質問 Appstore 自社アプリページについて ページビューやユニークビジターといった数値は取得できる? 上記ビジターの流入元(ソーシャル、リファラル、ストア内検索等・・・)は取得できる? その際、ストア内検索の際の検索キーワードは取得することができる? Smart App Bannerについて CTR(クリック数)を表示することは可能? 別スマホアプリのWebview(ブラウザ含む)内でタップ時の挙動(遷移先)をユーザクライアント内のアプリインストール済/未済で変更することはできる? 未インストールであればAppstoreのアプリページに飛ばしたい インストール済であればCompathyアプリに飛ばし、当初Webview上で閲覧していたのと同じコンテンツが表示されている場所に遷移させたい 別スマホアプリのWebview(ブラウザ含む)内で

    「iPhoneアプリの数値計測したいんだけど」と言われた君へ - Qiita
  • Moment.js | Parse, validate, manipulate, and display dates in javascript.

    Moment.js 2.30.1 Parse, validate, manipulate, and display dates and times in JavaScript. Install npm install moment --save # npm yarn add moment # Yarn Install-Package Moment.js # NuGet spm install moment --save # spm meteor add momentjs:moment # meteor bower install moment --save # bower (deprecated) Format Dates moment().format('MMMM Do YYYY, h:mm:ss a'); moment().format('dddd'); moment().format

  • JavaScriptで日付を扱うならこれ!「moment.js」

    ■ つかいかた(基礎編) ダウンロードしたmoment.jsをscriptタグで読み込ませたら準備完了です。 あとは下記のような実装で使用できます。 // momentオブジェクトを初期化して・・・ var m = moment(); // formatで出力! var output = m.format("YYYY年MM月DD日 HH:mm:ss dddd"); console.log(output);  // => 2013年05月15日 12:34:56 Wednesday // 現在時刻 moment(); // ミリ秒で指定 moment(1368543600000); // タイムスタンプ(秒)で指定 moment.unix(1368543600); // Date.parseで解析可能な文字列を指定 moment("May 15, 2013"); // Dateオブジェクトか

    JavaScriptで日付を扱うならこれ!「moment.js」
  • pickadate.js

    There’s a tonne of options to customize the date and time pickers, such as month/year selectors, time intervals, etc. There’s also a rich API to extend the functionality of the picker. Some examples are displayed on Codepen. When using the “classic” theme, it is important to have a wrapper div with position: relative around the source input to ensure the picker is sized according to the input elem

  • 1