You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert
Ext JS is now Sencha 14日(米国時間)、JavaScript Ajaxアプリケーションフレームワークとして一定の支持を得る可能性を持ったプロジェクトが発表された。「Sencha」と名づけられたこのプロジェクトは、デスクトップPCからiPhone / iOS向けのWebアプリケーション開発まで広くカバーすることになる。 Senchaは、これまでExt JSとして開発されてきたJavaScript Ajaxフレームワークに、最近高い関心を呼んでいるjQTouchとSVGライブラリであるRaphaelの双方を統合したもの。開発チームに同プロダクトの開発者と取り込んでおり、今後の本格展開を狙う。 Senchaという名前は日本語の煎茶からきている。次世代ソフトウェア開発の雰囲気を喚起する名前であること、スペルも覚えやすく発音も覚えやすいというのが理由としてあげられている。これま
JavaScript libraries let developers do more with less code. But JavaScript libraries need to work on a variety of browsers, so using them often means shipping even more code. If JQuery has code to support XMLHttpRequest over ActiveX on an older browser like IE6 then you end up shipping that code even if your application doesn't support IE6. Not only that, but you ship that code to the other 90% of
Looking for information about Informa TechTarget products and services? The commercial homepage has moved. Visit Informa TechTarget News 22 Jul 2026 / Automation & Orchestration Harness Agent DLC targets AI agent development gaps DevSecOps for AI agents requires more than code review -- Harness beefs up behavioral and security controls and hints at a possible observability expansion. 21 Jul 2026 /
What is the AJAX Libraries API? The AJAX Libraries API is a content distribution network and loading architecture for the most popular open source JavaScript libraries. By using the Google AJAX API Loader's google.load() method, your application has high speed, globaly available access to a growing list of the most popular JavaScript open source libraries including: jQuery jQuery UI prototype scri
Resources by Application Bootstrap Templates Figma Templates Flyer Templates Illustrator Templates InDesign Templates Lightroom Presets Logo Templates Logo Fonts Mockup Templates Photoshop Actions Photoshop Brushes Resume Templates Tailwind CSS UI Kits Web Templates Video & Motion Design Templates All Motion Design After Effects Apple Motion DaVinci Resolve Final Cut Pro Premiere Pro Presentation
Classy Classes for JavaScript¶ Wooya. You love JavaScript and use jQuery or another lightweight library extensively but you notice that your code becomes messier and messier the larger the application grows? Well, that’s where Classy comes in. Classy is a small JavaScript library that implements Python inspired classes for JavaScript. Where can you get that classy library? You can get it from gith
みんなのIoT/みんなのPythonの著者。二子玉近く160平米の庭付き一戸建てに嫁/息子/娘/わんこと暮らしてます。月間1000万PV/150万UUのWebサービス運営中。 免責事項 プライバシーポリシー JavaScriptでPython風にクラスを定義できるClassyというのを発見した。 まず「<script type="text/javascript" src="classy.js"></script>」しておいて var Animal = Class.$extend({ __init__ : function(name, age) { this.name = name; this.age = age; this.health = 100; }, die : function() { this.health = 0; }, eat : function(what) { this.
知ってはいたけど自分では書いたことがなかった CoffeeScript。上のほうにある "TRY COFFEESCRIPT" ってやつを押すと、リアルタイムで CoffeeScript を JavaScript に変換して実行もできる。 Ruby + Python を2で割ったようなシンタックスで、ヒアドキュメントやら Range やらの構文や、最後の値とか if 等で計算した値をよろしく return してくれたり、痒いところに手が届きまくりで JavaScript を書くときのアノ苦痛が激減する。面白いと思ったのは、ループが while しかなくて、while は計算結果の配列を返す式というところ。式なので関数に渡したりできる (まあそれをやると生成した JS が見るに耐えなくなるけど)。 1.0 になるまでは構文に変更があるかもしれないので遊び程度に思っていてねと書いてあるけど、生成
iPhoneやAndroidといった、フルブラウザを搭載するモバイル端末が普及しつつある。Webアプリケーションの開発現場も、そろそろこれらモバイル端末を無視できなくなってくるだろう。モバイル端末向けWebアプリケーションの構築には、インフラをはじめとしてさまざまな制約がつきまとう。 本稿ではモバイル向けWebアプリに特化した軽量JSライブラリ「baseJS」を紹介したい。 baseJSとは baseJSはPaul Armstrong氏が開発・リリースしている軽量JavaScriptフレームワークのひとつ。iPhone/iPod touch上で動作するWebアプリケーションの開発に特化したライブラリだ。Webアプリケーションを作成するにあたり、必要最低限の機能のみをサポートしている。 同ライブラリの最終更新日は2009年5月9日(米国時間)。公開当初のライセンスはCreative Comm
はじめに この記事では、JavaScript 用のテンプレートエンジン Jarty を紹介します。 Jarty (じゃーてぃー) とは、PHP の有名なテンプレートエンジンである Smarty を JavaScript に移植したものです。ただし、完全に再現しているわけではなく、いくつかの機能は制限されています。 Jarty には以下のような機能があります。書式の多くは Smarty 互換です。 変数の置換 {$foo} => "abc" {if} {else} {/if} などの条件分岐 {foreach} {/foreach} などのループ {$foo|upper|escape} などのフィルタ (パイプ) etc. ソースコードは The MIT License として公開しています。 GitHub 上のリポジトリ: http://github.com/kotas/jarty また、
HTML5 で、ブラウザの機能として「音」を再生する仕様が追加されました 音を再生するには、<audio src="..." autoplay> を HTML に埋め込むか、new Audio(src).play() とします。 仕様 ⇒ http://www.w3.org/TR/html5/video.html クロスブラウザ化する上での問題は2つ 1. 古いブラウザ向けに Silverlight(XAML) や Flash を使い、それらの違いも吸収しなければならない。 2. サポートしているコーデックの違いを吸収する仕掛けも必要。 Browser uu("Audio") HTML5Audio SilverlightAudio FlashAudio Firefox3.0 mp3 - mp3 mp3 Firefox3.5+ mp3,ogg,wav ogg wav mp3 mp3 Safa
border-radius.js は、class属性に値を追加するだけで、ブロックボックス要素の角を丸くするライトウェイトなJavaScriptライブラリーです。 CSSでborderとmarginを指定し、class属性に "html5jp-border-radius" を追加するだけで、角が丸くなります。JavaScriptのコードは一切必要ありません。また、このライブラリーは単独で動作するため、他のJavaScriptフレームワーク等を読み込む必要もありません。 このライブラリーは、指定のブロックボックス要素の上下に角を追加します。Internet Explorerの場合はVMLを、それ以外のブラウザーではCanvas(Canvasがサポートされていれば)を使っています。 ダウンロード Release Date Size (byte) Download
四角を書いてみよう <!DOCTYPE html> <html> <head> <meta charset=utf-8> <title>Sample</title> </head> <body> <script src="raphael.js"></script> <script> var paper = Raphael(0, 0, 500, 500); paper.rect(0, 0, 20, 20); </script> </body> </html> サンプル 四角に色を付けてみよう <!DOCTYPE html> <html> <head> <meta charset=utf-8> <title>Sample</title> </head> <body> <script src="raphael.js"></script> <script> var paper = Raphael(
Account Suspended This Account has been suspended. Contact your hosting provider for more information.
SproutCore: JavaScript HTML5 Application Framework - Create fast, native-style applications in any modern web browser without plugins. SproutCoreの最初のメジャーリリースバージョンとなるSproutCore 1.0が公開された。SproutCore 1.0.1046が正式に1.0と位置づけられた。登場から18ヶ月、当初の予定からだいぶ遅れてのバージョン1.0のリリースとなったが、それに見合うだけの高速性を実現したようだ。 SproutCoreはJavaScriptで開発されたRIA Webアプリケーション開発向けフレームワーク。Cocoaに触発されて開発されたフレームワークで、少量のソースコードで価値の高いアプリケーションを開発できるように工夫され
API Documentation Index _global_ Array Boolean CoreTest CoreTest is the unit testing library for SproutCore. CoreTest.Plan A test plan contains a set of functions that will be executed in order. CoreTest.Suite A test Suite defines a group of reusable unit tests that can be added to a test plan at any time by calling the generate() method. Date Function Object SC All SproutCore methods and function
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く