タグ

2012年5月14日のブックマーク (4件)

  • アドビ―Dreamweaverデベロッパーセンター

    Enhance and extend DreamweaverDreamweaver provides its own API as well as the Common Extensibility Platform (CEP), and offers you the flexibility of using C++, HTML, CSS, and JS to build extensions for Dreamweaver. You can extend the Dreamweaver UI, add powerful features for building web apps and automate entire cross-application workflows. Build custom web development toolsImport database data in

  • 僕のサイボウズ・ラボ生活(1)

    (0) 僕はサイボウズ・ラボの社員で、僕はサイボウズ・ラボやサイボウズをいい会社だと思っている。今からそれを自慢する(笑)。 結局のところ、サイボウズ社やラボが良い会社だというだけではなく、僕の性格にぴったり合っていたということもあるのだと思う。当によかった。僕は運がいい。 現在ラボはサイボウズ社と同じビル、同じフロアに入っていて、仕事も一緒にすることが結構ある。 (1) 僕はまず、サイボウズ社が好きだ。社長の青野さんがとても尊敬できる人で、会社の経営方針についてわかりやすいビジョンを持ち、それを全社員に向けて説明してくれる。僕はラボの社員であって社の社員ではないのだけど、同じように説明してもらえる。聞いていると、「よしこの人のために僕は自分のできることをやろう」という気になる。応援したくなる人、という感じだろうか。 僕はOSASK計画を立ち上げてから、ずっとプロジェクトの代表で

    karihei
    karihei 2012/05/14
  • jQuery Knob

    Demo jQuery Knob canvas based ; no png or jpg sprites. touch, mouse and mousewheel, keyboard events implemented. downward compatible ; overloads an input element. Example <input type="text" value="75" class="dial"> <script> $(function() { $(".dial").knob(); }); </script> Options Options are provided as attributes ‘data-option’: <input type="text" class="dial" data-min="-50" data-max="50"> … or in

    karihei
    karihei 2012/05/14
    プログレスバー?リング?とにかくそんな感じのオサレなjQueryパーツ
  • JavaScript アニメーションのデザインパターン

    JavaScript でアニメーションを作る アニメーションとは何? ビューを少しずつ回転、拡大縮小、移動、変色などを行い、連続的な動きを作る こんな感じ <div id="view">hoge</div> <script> var el = document.getElementById('view'); el.style.opacity = 1; setInterval(function() { el.style.opacity -= 0.01; }, 10); </script> なんで、あんな感じの書き方になるの? setInterval の意味が分からない こんな感じで書けないの? <div id="view">hoge</div> <script> var el = document.getElementById('view'); el.style.opacity = 1; w