並び順

ブックマーク数

期間指定

  • から
  • まで

361 - 400 件 / 692件

新着順 人気順

BackgroundImageの検索結果361 - 400 件 / 692件

  • Importing images with Webpacker

    An unofficial Rails guide Webpack isn't just for JavaScript. You can bundle images with it too. Webpacker makes it relatively easy to work with images, but it is admittedly confusing at first: Images in JavaScript? In this post, we'll demonstrate how to reference Webpacker images from your JavaScript, CSS, and Rails views. The following examples were created using Rails 6 and Webpacker 4, but may

      Importing images with Webpacker
    • ちょびっと3Dを - PHP,MySQL,Flex,JSな日々+イラストとか

      ひさしぶりにちょびっとPaperVision3Dをしてみました。 こんな感じ http://moeten.info/ 今回使ったライブラリ PaperVision3D Tweener text3Dは現在のPaperVision3Dに含まれているので楽ちんです。 ただ、上記のビルド番号840なswcでないとダメっぽいので注意。 ソースはこちら 微妙に実際のとは違います。あとソース整理していないので、かなりきちゃないです(^-^; <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()" backgroundImage="bg.jpg" > <mx:Script> <![C

        ちょびっと3Dを - PHP,MySQL,Flex,JSな日々+イラストとか
      • background-imageを使ったボーダーエフェクト色々:phpspot開発日誌

        More Control Over CSS Borders With background-image | CSS-Tricks background-imageを使ったボーダーエフェクト色々 通常のCSSでは実現できないような枠線のエフェクトが色々公開されています 関連エントリ CSSのクリップパスを使った背景をかっこよく切り替えるデモ CSSレイアウトやUIパーツのパターン集「CSS Layout」 ピュアCSSなのにネイティブアプリっぽく動くスイッチUI「MoreToggles.css」

        • RubyistのためのDjango入門

          1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127

          • How do iPhone apps Instagram/Reeder/DailyBooth implement custom NavigationBars with variable width back buttons?

            Full Source code: https://github.com/boctor/idev-recipes/tree/master/CustomBackButton Problem: Apps like Instagram, Reeder and DailyBooth have a UINavigationBar with custom background and sometimes custom back buttons. How do we build a similar custom UINavigationBar? Solution: In our recipe for Recreating the iBooks wood themed navigation bar we added a wood  image as a subview of UINavigationBar

            • 【Labs】JavaScriptでタイマー系いろいろ

              こんにちは(・∀・) 今回はJavaScriptで作るタイマー系のスクリプトをまとめましたのでそれらサンプルのご紹介です。JavaScriptでCSSを切り替えるようになっているので背景色や画像以外の効果を設定することもできますので色々とお試しください。 1. 背景色の変更 背景色を設定時間で変化させるサンプル。 サンプル HTML <div class="timer"> <p>背景色が設定時間で変わります。</p> <p>00時~06時は赤です。</p> <p>06時~12時は青です。</p> <p>12時~18時は黄です。</p> <p>18時~24時は緑です。</p> </div> function bgcolor() { var nt = new Date() var hr = nt.getHours(); if((hr >= 0) && (hr < 6)) document.bo

                【Labs】JavaScriptでタイマー系いろいろ
              • GVim7 for Win32 background image patch @ 7bit

                追加したオプション(すべてグローバル) bgi, backgroundimage 背景画像へのフルパス(拡張子付き)、もしくは$VIMRUNTIME/bitmaps/からの相対パス(拡張子抜き)。 set bgi=background($VIMRUNTIME/bitmaps/background.bmp)、set bgi=D:\images\vimbg.bmpなどと指定します。 set bgi=で背景画像表示をoffにします。 bgid, backgroundimagedisplay 画像の表示方法。set bgid=drba等と指定します。詳しくは以下。 bgis, backgroundimagesize 計算量短縮の為に、あらかじめ背景画像をタイル化して内部で保持していますが、その最大サイズ(実際には背景画像の大きさの倍数に拡張されます)を指定。 例えばset

                • 背景画像を画面一杯に拡げて表示する

                  Copyright (C) iPhoneアプリ開発備忘録 All rights reserved. ブログ内で記したコード、内容の正確性は保証いたしません。 記載内容を実装したことにより発生した不具合・損害等の責任は一切負いません。 UIViewに背景画像を設定する場合、下記のようにUIColorのcolorWithPatternImageを使用して、self.view.backgroundColorに設定することができるが、この場合、文字通り「colorWithPatternImage」なので、画面上にタイル状に繰り返し表示されてしまう。UIImage *backgroundImage = [UIImage imageNamed:@"background.png"]; self.view.backgroundColor = [UIColor colorWithPatternImage:b

                    背景画像を画面一杯に拡げて表示する
                  • iPhone SDKのUITableViewCellの背景画像を指定して、textLabelにテキストを入れるとテキストの背景色が前面に表示されてしまいます。…

                    iPhone SDKのUITableViewCellの背景画像を指定して、textLabelにテキストを入れるとテキストの背景色が前面に表示されてしまいます。textLabelの背景色を透明にするにはどのようにコーディングすればよいのでしょうか? - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 〜省略〜 UIImageView *backgroundView = [[UIImageView alloc] init]; folderView.image = backgroundImage; cell.backgroundView = backgroundView; cell.textLabel.text = @"iPhone 4";

                    • Best Practice for Programming with Vendor Prefixes — SitePoint

                      February 14, 2012Best Practice for Programming with Vendor Prefixes Vendor prefixes enable web developers to experiment with new standards before they reach the Candidate Recommendation stage. I previously wrote how these prefixes are also a mechanism browser vendors use for handling timing conflicts between implementations and specifications. In building demos of new features for our IE Test Driv

                        Best Practice for Programming with Vendor Prefixes — SitePoint
                      • SearchBar in Titanium | Refactoring Thoughts

                        In this post, I will guide you to use SearchBar in TableView when your development is based on Titanium. Keywords: Titanium, TableView, TableViewRow, SearchBar Step 1: Create a table view row datas for your content list. // create the rest of the rows var data = []; for (var c=0;c<rowCount;c++) { var row = Ti.UI.createTableViewRow(); row.backgroundImage = '../images/row_bg.png'; row.selected

                        • オンマウスで表の背景画像をかえる - ホームページお役立ち小技集

                          <table border="0" cellpadding="5" cellspacing="0" width="300" background="images/back9.gif" id="myTB"> <tr> <td align="center"> <a href="test1.html" onMouseOver="document.all['myTB'].style.backgroundImage='url(images/back6.gif)'">・テストページ1へ</a><br><br> <a href="test2.html" onMouseOver="document.all['myTB'].style.backgroundImage='url(images/back7.gif)'">・テストページ2へ</a><br><br> <a href="test3.html" onM

                          • jQueryで文字と背景を別々に動かすスライドショーart & arts

                            2012年5月12日 IBMを真似っこしたくてひたすら作ってみました。 jQueryのanimateをふんだんに使用しているのでIE6はたぶんアウトだと思う。確認してはいません。 早速コードを公開。 まずはhtml側 <div id="mainVisual"> </div> <script type="text/javascript" src="js/slides2.js"></script> <div id="thumbsnail"> <ul> <li><a href="#" onClick="slideHide(0)"><img src="img/thumb000.png"></a></li> <li><a href="#" onClick="slideHide(1)"><img src="img/thumb001.png"></a></li> <li><a href="#" onCl

                            • DVD Flickのメニュー編集

                              template.cfgのコピーを作成しtemplate.savとします。 これでメニューの変更時に間違って壊してしまった時、動作するバージョンに戻れます。 template.savをtemplate.cfgにコピーし、壊れたメニューを置き換えるだけです。 付け加えると、変更を加える際に、テンプレートファイルを好きなだけ(かつ異なる名前で)コピーできるので、 壊れてしまった時には全てをやり直さずに済みます。 次のステップはテンプレートファイルの変更です。テキストエディタでファイルを開かねばなりません。 もし既にどうやるのかを知っているなら素晴らしいです。そうではないなら、以下のようにしましょう。 • template.cfgを右クリック • プログラムから開く(H)を選択 • Notepad(メモ帳)を選択 進めるに従って、馴染みのない表現(ピクセル、RGBカラーのような)が現れるでしょう

                              • 一定時間で画像を切り換える

                                赤字:JavaScriptの命令や重要なタグ/青字:用途に応じて変更する部分/緑字:変更可能な変数名やユーザー関数名 戻る 実例 例文 <img src="ita.gif" name="sushi"> <script type="text/javascript"> img = new Array("ita.gif","ikura.gif","ebi.gif","maguro.gif","toro.gif","uni.gif"); //*1 count = -1; //*2 imgTimer(); function imgTimer() { //画像番号 count++; //*3 //画像の枚数確認 if (count == img.length) count = 0; //*4 //画像出力 document.sushi.src = img[count]; //*5 //次のタイマー呼び

                                  一定時間で画像を切り換える
                                • iOS 6 beta 4, Xcode 4.5 Developer Preview 4 released to developers - 9to5Mac

                                  AAPL Company iOS 6 beta 4, Xcode 4.5 Developer Preview 4 released to developers Three weeks after it released iOS 6 beta 3, Apple has unleashed a fourth beta of the next-generation version of iOS to developers. The new beta is currently available as an over-the-air update to those running iOS 6 beta 3, and the new version should has also hit Apple’s iOS Developer Center. The build number is 10A537

                                    iOS 6 beta 4, Xcode 4.5 Developer Preview 4 released to developers - 9to5Mac
                                  • (IE6)background-imageが欠ける現象|junk diary

                                    「Cinema Jack」をIE6で見ると、メニュー部分の背景画像が欠けるという現象が起きていました。 ドラッグしたり、スクロールしたりすると、表示されたり。また消えたり。 このメニュー+画像部分は、 <div id="first_section"> <dl> <dd>HOME</dd> <dd>ABOUT</dd> <dd>LINK</dd> </dl> <dl> <dd>ジャンル別</dd> <dd>評価別</dd> <dd>50音順</dd> </dl> <hr /> </div> こんな感じになっています(一部省略)。 [first_section]の中の[dl]にfloatを付けて横並びにさせて、[hr]でclearさせています。 んで、背景画像は[first_section]のbackground-imageで表示させています。 はじめは[hr]のclearが効いていないのかと

                                    • GoogleAPIを使ったiPhone用壁紙検索 その2 | かえラボBlog

                                      GoogleAPIを使ったiPhone用壁紙検索をちょっとばかり改良してみました。 デモ 変更点は ベースはHTML5+CSS3 検索ボックスをCSSでiPhoneぽく 検索結果一覧を左右にスライド 「iPhone画面を表示する」をオプションに。 元画像URLがすでに無効になっていた場合に「Not Found」用の画像を表示。 // ドキュメントがロードされると指定されたハンドラを登録する。 // google.setOnLoadCallback(onload); // jQuery未使用時でも有効で、$(document).ready(onload) や jQuery(onload) と同じ。 $(function onload(){ // ImageSearchオブジェクトの作成 → 検索結果は.result[]で利用 imageSearch = new google.search.I

                                      • ie6で透過png画像を使う為のCSS | ネットショップ立ち上げ備忘録

                                        Windows7のベータが登場しいよいよIEも8なのですが、まだまだXPユーザも多くie6のユーザも多い状況です。 ie6は何かとコーディングする時に大変なのですが、特に透過効果を使用したい時にie6はpngが透過されません。 gif画像で解決できる場合はそれにこした事はないのですが、どうしてもgifの解像度では透明が汚くなる事が多々あります。そんな時はpngを使うと解消されます。 今回は背景画像に焦点を。 例えばアメブロではhtml側の編集が出来ず、cssのみの編集しか出来ません。html側も編集できる場合はie用のjavascriptを入れこめれるのですがcssしか編集出来ない場合はjavascriptでの制御は出来ません。 ではcssのみでie6でも透過pngが使えるようにするコードです。 詳しい参考リンクはCSS ファイルだけで IE 6 の背景に設定した png のアルファチャン

                                        • Titanium.Media.showCamera with overlay, pass through events

                                          I am writing an iOS application that utilizes the camera. I want an image (and ultimately a control element or two) overlayed over the camera picture. This already works. However the overlay prevents the default control elements for Flash, HDR and camera selection from receiving touch events. Below is my code. Is there a way to make myOverlay pass through or ignore events? var overlayImage = Titan

                                            Titanium.Media.showCamera with overlay, pass through events
                                          • You can now download the new Open Source Windows Terminal

                                            Last month Microsoft announced a new open source Windows Terminal! It's up at https://github.com/microsoft/Terminal and it's great, but for the last several weeks you've had to build it yourself as a Developer. It's been very v0.1 if you know what I mean. Today you can download the Windows Terminal from the Microsoft Store! This is a preview release (think v0.2) but it'll automatically update, oft

                                              You can now download the new Open Source Windows Terminal
                                            • adiaryにテキストベースの「あわせて読みたい」を導入してみた | ひとぅブログ

                                              「あわせて読みたい」はブログ読者が読んでいるブログを表示するサービスで、似た話題を書いているブログを新しく知るきっかけにもなりとても面白いサービスなのですが、いかんせんデザインが野暮ったい(^_^;)。サイドバーに設置すると変に目立つ(それが目的なのかもしれないけど、目立つと言うより浮いてる感じ?)ので、テキストベースのブログパーツをadiaryに設置してみました。 利用したのは、Salad Days Riderのはっさくさんが公開している「あわせて読みたい JS版」をBlogger用にotherさんがカスタマイズしたものをお借りしました。 サイドバーに溶け込んでいい感じになりました(*^_^*)。 以下にadiaryでの設置方法をご紹介しておきます。 ■ ソース <!-- 「あわせて読みたい」javascript版 adiary ver. Edited by hitoxu https:/

                                                adiaryにテキストベースの「あわせて読みたい」を導入してみた | ひとぅブログ
                                              • 画像をフォルダから自動読み込み。

                                                画像をフォルダから自動で読み込み、ランダムに背景に読み込ませたいのです。 ランダムに背景に表示させる方法は以下のスクリプトで達成済みです。 <script type="text/javascript"> var imglst= new Array( "haikei/bg001.jpg", "haikei/bg002.jpg", "haikei/bg003.jpg" ); function randombg(){ var imgnum=Math.floor(Math.random()*imglst.length); document.body.style.backgroundImage="url("+imglst[imgnum]+")"; } </script> <body onload="randombg();"> 上のスクリプトのnew Array()でいちいち画像のフォルダ名/画像名.

                                                  画像をフォルダから自動読み込み。
                                                • GVim7 for Win32 background image patch @ 7bit

                                                  追加したオプション(すべてグローバル) bgi, backgroundimage 背景画像へのフルパス(拡張子付き)、もしくは$VIMRUNTIME/bitmaps/からの相対パス(拡張子抜き)。 set bgi=background($VIMRUNTIME/bitmaps/background.bmp)、set bgi=D:\images\vimbg.bmpなどと指定します。 set bgi=で背景画像表示をoffにします。 bgid, backgroundimagedisplay 画像の表示方法。set bgid=drba等と指定します。詳しくは以下。 bgis, backgroundimagesize 計算量短縮の為に、あらかじめ背景画像をタイル化して内部で保持していますが、その最大サイズ(実際には背景画像の大きさの倍数に拡張されます)を指定。 例えばset

                                                  • Processing サンプル

                                                    Processing サンプル集 最終更新:2008/02/01 プロセッシングに付いてるのを そのまんまビルドしただけですけどw できる範囲で日本語化していきます。 基本 (Basics) 構造 (Structure) コードとコメントの書き方 (StatementsComments) 幅と高さ (WidthHeight) 座標 (Coordinates) setup・draw命令 (SetupDraw) noLoop命令 (NoLoop) ループ (Loop) 再描画 (Redraw) グラフィックの作成 (CreateGraphics) 関数 (Functions) 再帰 (Recursion) 再帰2 (Recursion2) 配列 (Arrays) 配列 (Array) 2次元配列 (Array2D) オブジェクト配列 (ArrayObjects) ↑ ここから上は日本語化

                                                    • 【Swift】UIButton | ポケットリファレンス サンプル付き

                                                      UIButton サンプルサンプルで動作を確認 コピーペーストで確認できます。全体をコピー後、不必要な部分を削除することでコーディングを素早くできます。 // システムボタンを指定してボタンを作成 let button : UIButton = UIButton(type: UIButtonType.System) // ボタンに設定されている UILabel を取得 let uiLabel : UILabel = button.titleLabel! // ノーマル状態時のタイトルを取得 let stateTitle : String = button.titleForState(UIControlState.Normal)! // ステートを指定して、タイトルを設定 button.setTitle("タイトル",forState:UIControlState.Normal) // ステ

                                                        【Swift】UIButton | ポケットリファレンス サンプル付き
                                                      • Directed Graph Markup Language (DGML) reference - Visual Studio 2015

                                                        Directed Graph Markup Language (DGML) describes information used for visualization and to perform complexity analysis, and is the format used to persist code maps in Visual Studio. It uses simple XML to describe both cyclical and acyclic directed graphs. A directed graph is a set of nodes that are connected by links, or edges. Nodes and links can be used represent network structures, such as eleme

                                                          Directed Graph Markup Language (DGML) reference - Visual Studio 2015
                                                        • mx.controls.VideoDisplay (Flex 3.2)

                                                          VideoDisplay コントロールを使用すると、Flex アプリケーションで FLV ファイルを再生できます。HTTP を介したプログレッシブダウンロード、Flash Media Server からのストリーミング、および Camera オブジェクトからのストリーミングをサポートします。 MXML のシンタックスMXML シンタックスを隠す The <mx:VideoDisplay> tag inherits all the tag attributes of its superclass, and adds the following tag attributes: <mx:VideoDisplay Properties autoBandWidthDetection="false|true" autoPlay="true|false" autoRewind="true|false"

                                                          • Become a master of Ruby on Rails

                                                            All Ruby on Rails eBooks + All Screencast Videos + All Previous Versions. The full Ruby on Rails Tutorial screencast series (3rd edition).DRM-free copies of the 3rd Edition Ruby on Rails Tutorial ebooks.Free copy of the Solutions Manual.All eBooks in HTML, PDF, EPUB, and MOBI formats.Copies of all previous editions of the Ruby on Rails Tutorial screencasts (4.0 supplement, 2nd edition, 1st edition

                                                              Become a master of Ruby on Rails
                                                            • カチグリのブログ

                                                              パソコンのバックアップ用に使用している 外付けハードディスク が故障しました。 故障と云っても、読めないフォルダが一つだけみたいです。そのフォルダを参照しようとすると、フォーマットを勧められます。 パソコンのパーツで もっとも故障しやすい物の一つである 「ハードディスク」、故障したのは 初めての体験です。 それも、いつもは電源を入れない 「バックアップ専用」 のハードディスクです。 2011年11月23日 に購入した物です。まあ、故障するか しないかは、運ですね。 今までは 「運が良かった」 と考える事にします。 バックアップの容量として 2T では、心もとなくなっていたので、「3T に交換しようか」 と考えていた矢先でした。 3T のハードディスクを購入するために、ポチッとしました。 現在、AMA Soft では、As/R V7 の β版 開発が行われています。 15.11.27現在、V

                                                                カチグリのブログ
                                                              • g012/画像や背景画像を一定時間ごとにランダムに入れ替える

                                                                ■【技g012-1】画像を一定時間毎にランダムに入れ替える/表示している画像Noをテキストフィールドに表示する ◆以下の手順は[技g003]と全く同じですので、[技g003]を参照して下さい。 ※手順1a【テキストフィールド設置】(画像Noを表示するためのテキストフィールドの設置) ※手順1b【表示画像設置】(表示する画像の設置) ※手順1c【開始・停止ボタン設置】 ※手順2【スクリプト実行】(スクリプトを実行する) ◆手順3【javascript】<head>~</head>間に記述 -----次の行から(copy)----- <script language="JavaScript"> <!-- var TIMER="3000"; //スライド切替時間(1秒=1000) var TIMER_ID="-1"; //タイマーID(スライド停止:TIMER_ID=-1) var FILE="

                                                                • 『jquery The ランダム』

                                                                  アメーバブログ(Ameba アメーバ)をCSSでカスタマイズしてオリジナルブログにしてみませんか? CSSでどこまでスキンをカスタマイズできるかチャレンジ! 初心者でもオリジナルなスキンで個性的なアメーバブログ(Ameba)に! 今回は訳あって前フリが長いです・・・ いつもジャン・・なんて突っ込みはなしでお願いします リク記事です 「ランダムでヘッドだけでなく背景も一緒にランダムで変更できたら」 うん・・ランダムでヘッド画像を変更する記事を書いてからすでに3年半近くたちます この間にわたしも成長しました jqueryなんて武器を多少は会得しました 「ランダム」で検索をしてこのブログにこられている方も多いです・・ なので今回はJavaScriptでもjquery化したのにチャレンジしました・・ ヘッド画像のランダムをjquery化はすんなりと出来ました <script type="text/

                                                                  • Status.netの設定と日本語化 - ore-yomeのオレノヨメ日記

                                                                    Twitterクローンのマイクロブロギング系のオープンソースStatus.netというものがあると知ったのは、2ヶ月ほど前だったと思う。 さくっと落としてきて設定して動かしてみたものの、動くだけで使い物にならなかった。 いろいろググってみたが、日本語のドキュメントが非常に少ない。 そして私はほとんど英語がわからない。 同梱されていたReadmeと、configファイルの例を見ながら、1つ1つ設定を試したりしてうまく動くようになるまで1ヶ月ぐらいかかった。 その後、わかりにくい部分を日本語化した。 言語ファイルがあったが、それをなおすだけでは日本語化できなかった。さすがβ版。 なので一部、PHPのファイル本体を日本語化した。 あとメール周りで日本語を通すのにちょっと苦労した。 具体的にまとめたいが、手探りだったので忘れた・・・。 こう言うのがだめなんだと思うが、オレノヨメのコンフィグファイル

                                                                      Status.netの設定と日本語化 - ore-yomeのオレノヨメ日記
                                                                    • Building an Advanced Transaction UI with Titanium

                                                                      Building advanced user interfaces in Titanium is pretty easy – once you get the hang of it. In this tutorial, I’m going to walk through how to build an advanced transactional UI – one that might be used for example in an application that captures credit card and needs a signature right on the device. Square is currently a popular company located here in San Francisco that’s doing this type of app.

                                                                        Building an Advanced Transaction UI with Titanium
                                                                      • Benefits of using styled-components in React - LogRocket Blog

                                                                        LogRocket’s Galileo AI watches every session, surfacing impactful user struggle and key behavior patterns. Editor’s Note: This article was updated with relevant information in July 2021, including styled-components’s current GitHub rating and additional benefits and concerns around using styled-components. In this article, we will be looking at some of the various benefits of styled-components and

                                                                          Benefits of using styled-components in React - LogRocket Blog
                                                                        • shukujitsuの開発ブログ : iPhone - livedoor Blog(ブログ)

                                                                          2009年04月12日06:59 カテゴリ 画像をクリップして表示 画像のクリップが一応できた。一応なのは、納得できない点が多かったから。 画像のクリップをなんでやっているかというと、ゲームキャラクターのアニメーションをしたかったから。ゲームでキャラクターが歩いているように見せるため、二コマのパターンを繰り返しているようなやつ。 アニメーションのパターン数だけ画像を用意してもいいんだけど、それだとアニメーションのコマ数だけ画像オブジェクトを生成したり、表示される画像を頻繁に更新しないといけなかったりと、負荷が高くなってしまう。 なので、一枚の画像にアニメーションのパターンを全部描いておいて、その一部を表示し、動くたびにその表示位置を変更する。これだと画像のオブジェクトは一枚で済むし、表示オブジェクトを切り替える必要もない。 結局View一枚でこれを実現することができなかったので、Viewを

                                                                          • SBSettings Themes creation guide | For Iphone

                                                                            The default SBSettings theme with all theming elements included in this page is located on your iPhone after installing sbsettings at /var/mobile/Library/SBSettings/Themes/Default. This guide describes all the themeable elements of the SBSettings app for v1.0. My goal is to keep this interface locked down from this point forward so that themers do not need to retheme for each new elements. While t

                                                                              SBSettings Themes creation guide | For Iphone
                                                                            • Biotope - jsdo.it - Share JavaScript, HTML5 and CSS

                                                                              // forked from Event's "Web Creator's Contest Q the 2nd【vol.1】エントリー用コード" http://jsdo.it/Event/frf8 var FPS = 60; var WIDTH = 465; var HEIGHT = 465; var FISH_NUM = 15; var FISH_MIN_SPEED = 2.5; var SEP_RANGE = 50; var ALI_RANGE = 65; var COH_RANGE = 80; var MOUSE_SEP_RANGE = 80; var DUCK_WEED_NUM = 30; var RIPPLE_SIZE = 5; var FISH_IMG_URL = 'http://jsrun.it/assets/k/J/l/z/kJlzy.png'; var BACKGROUN

                                                                                Biotope - jsdo.it - Share JavaScript, HTML5 and CSS
                                                                              • Calculating element vertex data from CSS transforms | Keith Clark

                                                                                CSS transforms make it easy to manipulate an element in 3D space without worrying about the complex maths involved. But what if you want do more than transform elements? How can you shade an element or test if two transformed elements intersect? To do that you need access to the elements vertex data — unfortunately that data doesn’t exist. In this post I’m going to explain how to generate vertex d

                                                                                • Creating a Compelling UI for Windows Mobile and the Microsoft .NET Compact Framework

                                                                                  This browser is no longer supported. Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support. 4/7/2010 Alex Yakhnin, Microsoft Corporation April 2009 Summary Learn how to use the alpha blending and gradient drawing APIs that are available on the Windows Mobile® platform to create a compelling and attractive user experience. Download Msdn.UI_code.

                                                                                    Creating a Compelling UI for Windows Mobile and the Microsoft .NET Compact Framework