【第 86 話】 戦いはつづく!- 撃沈 編 -
★Nameless な連中にとって麻原尊師的存在であるBaron Grayson がついにオレのSS を捕捉した!
あっ!!!英語でコメント返さなきゃいけない!どぉしよう。・・・そんなことより、何て書いてあるのかよくわかんない。超ヤバいんだけど。orz - by Lovely Wolf -
# The Nameless Isle
<WebURL>
http://thenamelessisle.ning.com/
★Baron Grayson からの問題のコメントはコレだ!
・・・いちおう、せんせもコメント返してるじゃん。・・・通じたかどうかはナゾだが。
# *Lovely Wolf Report in The Nameless Isle*
<WebURL>
http://thenamelessisle.ning.com/photo/photo/show?id=2232249%3APhoto%3A10703
★このSS はオレ的には大スクープだったんだけど。まさか、制作途中だったなんて。placeholder って張り紙してある部分は、製作途中の一時的に使うものらしい。
・・・奴らに戦いを挑んだ今回も大御所の(笑)×2 で、あえなく撃沈。大御所のサイトだからしゃぁないか。
今日の真夜中まで待って、オレのコメント読ませてからお蔵入りとするか。
# (爆)死したSS たち var gblPhotoShufflerDivId = "photodiv"; var gblPhotoShufflerImgId = "photoimg"; var gblImg = new Array('http://img01.slmame.com/usr/lovelywolf/08110902.jpg','http://img01.slmame.com/usr/lovelywolf/08110903.jpg','http://img01.slmame.com/usr/lovelywolf/08110901.jpg'); var gblPauseSeconds = 8.25; var gblFadeSeconds = 2.25; var gblRotations = 100;var gblDeckSize = gblImg.length; var gblOpacity = 100; var gblOnDeck = 0; var gblStartImg; var gblImageRotations = gblDeckSize * (gblRotations+1); window.onload = photoShufflerLaunch; function photoShufflerLaunch(){var theimg = document.getElementById(gblPhotoShufflerImgId); gblStartImg = theimg.src; document.getElementById(gblPhotoShufflerDivId).style.backgroundImage='url(' + gblImg[gblOnDeck] + ')'; setTimeout("photoShufflerFade()",gblPauseSeconds*1000); }; function photoShufflerFade(){var theimg = document.getElementById(gblPhotoShufflerImgId); var fadeDelta = 100 / (30 * gblFadeSeconds); if (gblOpacity < 2*fadeDelta ){gblOpacity = 100; if (gblImageRotations < 1) return; photoShufflerShuffle(); setTimeout("photoShufflerFade()",gblPauseSeconds*1000);}else{gblOpacity -= fadeDelta; setOpacity(theimg,gblOpacity); setTimeout("photoShufflerFade()",5); }; }; function photoShufflerShuffle(){ var thediv = document.getElementById(gblPhotoShufflerDivId); var theimg = document.getElementById(gblPhotoShufflerImgId); theimg.src = gblImg[gblOnDeck]; setOpacity(theimg,100); gblOnDeck = ++gblOnDeck % gblDeckSize; if (--gblImageRotations < 1){ gblImg[gblOnDeck] = gblStartImg; }; thediv.style.backgroundImage='url(' + gblImg[gblOnDeck] + ')'; }; function setOpacity(obj, opacity) {opacity = (opacity == 100)?99.999:opacity; obj.style.filter = "alpha(opacity:"+opacity+")"; obj.style.KHTMLOpacity = opacity/100; obj.style.MozOpacity = opacity/100; obj.style.opacity = opacity/100;}
#photodiv {background-repeat: no-repeat; padding:0px; margin:0px;border: none;}
#photoimg {background-repeat: no-repeat; padding:0px; margin:0px;border: none;}
★CSS Photo Shuffler
//
// CSS Photo Shuffler v1.0 by
// Carl Camera
//
http://iamacamera.org
//
// SetOpacity Function and inpiration from Photo Fade by
// Richard Rutter
//
http://clagnut.com
//
// License: Creative Commons Attribution 2.5 License
//
http://creativecommons.org/licenses/by/2.5/
//
// Customize your photo shuffle settings
//
// * Surround the target <img /> with a <div>. specify id= in both
// * set background-repeat:no-repeat in CSS for the div
// * The first and final photo displayed is in the html <img> tag
// * The array contains paths to photos you want in the rotation.
// If you want the first photo in the rotation, then it's best to
// put it as the final array image. All photos must be same dimension
// * The rotations variable specifies how many times to repeat array.
// images. zero is a valid rotation value.