Itโs time to discuss another โbespokeโ web application user of the same underlying Emoji Name Searching functionality (based on the brilliant Emoji CSS, thanks) we last talked about with the recent Emoji Name Search Geo Chart WorldBank Tutorial.
Todayโs โbespokeโ usage stands alone as this new FairyStory Assistant web application encouraging the user to create their own fairy story โฆ
- in an HTML div element set to contenteditable=โtrueโ to be able to add underlying HTML and/or Emoji entity information into your Fairy Story, as you see fit โฆ being helped out by โฆ
- a bank of HTML iframe elements point at incarnations of the โEmoji Name Searchโ engine for Emoji categories (that we think may assist you with your story) of โฆ
- Fairy Story Characters
- Fairy Story People
- Fairy Story Times
- Fairy Story Transport
Any difficulties here? Glad you asked. Found that the HTML div cursor needed consideration after appending a โskullโ as per the HTML appended into the HTML div innerHTML โฆ
<i class="em em-skull"></i>
โฆ leaving it hard to keep adding more to the story. We needed to actually add โฆ
<i class="em em-skull"></i>
โฆ to append a hard blank that resets out of the italics and the display:block realm of the emojis, โwe thinksโ, now, on reflection. On adding an Emoji via the helper HTML iframe a links supplied, also, we wait a few seconds, then set the HTML div element cursor to its end, and for the code of this we would like to thank this excellent linkโs code, thanks.
Another thing that held us up for some time was our initial wrong placement of the document.write() document.body creation into the head (document.head) section. This caused the link element call of the CSS of the excellent Emoji CSS (Emoji Name Search engine underpinning) to be ignored, until it finally tweaked with us that document.write() coding sections often work best with the body (document.body) section, and so it came to pass with todayโs work, as well.
That leaves us with code considerations.
- Supervisory wise we have some HTML and Javascript and CSS called fairy_story_assistant
html supervising (or now able to be called from) the Emoji Name Search engine interfacing โฆ
- Supervised PHP emoticon_keyboard_shortcuts
php that changed in thisway and which can be run stand alone
Previous relevant Emoji Name Search Geo Chart WorldBank Tutorial is shown below.
A major issue when designing โwhereโ of life web applications is โperspectiveโ. One userโs view of the world can be entirely different to another. To gather โperspectivesโ into a common frame, it is often good to โzoom outโ. That is what the Google Charts Geo Chart specializes in. While it is great that the Map Chart is zoomable, it is often hard to judge, first up, what is ideal as that zoom level. Forget that with the Geo Chart in the sense we use it as a whole world display, with the country of interest, only, highlighted. Mind you, if you read the blurb about it, you will discover it can also display regional areas of countries. Cute, huh?!
What about more country statistics from that world view perspective? Well, we turn to the excellent resources of the WorldBank for links to their excellent website, regarding this, adding onto yesterdayโs progress with Emoji Name Search Map Chart Weather Tutorial.
This WorldBank website HTML a link exemplified yet another reveal nuance we canโt remember using before, perhaps because we thought it kludgy, or that the search engines wouldnโt be happy. Bear that in mind as we describe yet another way to โฆ
- start with an invisible HTML a link as per (and weโll include a line feed and an HTML h4 element (its initial contents irrelevant to our discussion just now) after) โฆ
<a target=_blank id=wba href= title=></a><br><h4 id=hmailto> ... </h4>
โฆ see how an a link can be invisible just by having a blank innerHTML - so later the user clicks/touches the Emoji Flag of a country, say, Eritrea, as per todayโs tutorial picture, leading to โฆ
- that HTML h4 elementโs innerHTML is populated with the HTML iframes that show the Map Chart and Geo Chart, and the parentโs โฆ
- grandparent Emoji
Flags of the World live run, with this HTML and Javascript world_flags
html HTML and Javascript, unchanged from yesterdayโs Emoji Name Search Timezone Tutorial โฆ supervising โฆ
- parent emoticon_keyboard_shortcuts
php PHP partner, that changed in thisway today supervises โฆ
- child map
php PHP that changed in thisway (and which is an independent Google
Chart Map Chart interfacing live run in its own right)
โฆ document.body onload event (from a PHP perspective) is made to โฆ
echo "<!doctype html><html><body onload=\" if (parent.document.getElementById('wba')) { parent.document.getElementById('wba').title='WorldBank'; parent.document.getElementById('wba').innerHTML='WorldBank'; parent.document.getElementById('wba').href='//www.worldbank.org/en/country/" . str_replace(" ","%20",strtolower(trim($ctyis))) . "'; } else if (parent.document.getElementById('hmailto')) { parent.document.getElementById('hmailto').innerHTML+='<br><a id=wba target=_blank title=WorldBank href=//www.worldbank.org/en/country/" . str_replace(" ","%20",strtolower(trim($ctyis))) . ">WorldBank</a>'; } \"><table style='width:100%;height:550px;'><tr><td><iframe style='width:100%;height:550px;' src=\"" . $urlis . "\"></iframe></td><td style='width:320px;'><iframe style='width:100%;height:550px;' src='" . $alturlis . "'></iframe></td></tr></table></body></html>";
โฆ populate that HTML (WorldBank website pointing) a linkโs innerHTML and title - grandparent Emoji
- to โrevealโ it โฆ cute, huh?! โฆ doh, I grant you โฆ but cute, huh!? โฆ grant doh I you โฆ cute huh but?!
Bear in mind, above, that originally we had the a link sitting inside the h4 element, courtesy of Javascript DOM (creating the a link from scratch), but this method caused the iframe elements to lose their content, perhaps because of that <br> line feed?
Think, perhaps, in web application work, there may be more than a hundred ways to make an HTML element invisible! On this topic, have you ever used an HTML input type=text element position:absolute; โoff the screenโ to get around that problem where the web browser is looking for the next textbox to tab to, and annoyingly picks the web browserโs address bar? Think width=0% or width=0px? Think maybe now why search engines may get annoyed at some of the ease with which this can all happen. Javascript DOM has a labyrinthine feel to it, which can fascinate and annoy all at once, and depending on who you talk to. Talk to me, and Iโll say that I really like Javascript DOM work, though.
Previous relevant Emoji Name Search Map Chart Weather Tutorial is shown below.
If youโve been studying the code of our hierarchy for our Emoji Flags of the World web application โฆ
- grandparent Emoji
Flags of the World live run, with this HTML and Javascript world_flags
html HTML and Javascript, unchanged from yesterdayโs Emoji Name Search Timezone Tutorial โฆ supervising โฆ
- parent emoticon_keyboard_shortcuts
php PHP partner, also unchanged from yesterday, because, today, our focus is on what this supervises โฆ
- child map
php PHP that changed in thisway (and which is an independent Google
Chart Map Chart interfacing live run in its own right)
โฆ am sure youโll have noticed how bottom heavy it is on the โchildโ as far as functionality goes. What we like to call โthe hard working duck syndromeโ. Partly, that is because we see the Google Charts Map Chart interface we have as being a very useful โmeeting pointโ with interfacing web applications tending towards the โwhereโ of life.
Todayโs job, extending yesterdayโs Emoji Name Search Map Chart Tutorial is to add Map Chart interfacing to the great Weather Underground and its great API service for autocomplete name searches for weather (and hurricane) information โฆ thanks.
The changes are again just to that โhard working duckโ Map Chart interface โchildโ web application, as for yesterdayโs work. We were very keen to do this, especially because โฆ
- Weather Underground database works most succinctly with Placename, Country identification pairs, better than for the โฆ
- Continent/Placename setup of (PHP) Timezones
โฆ and so, while we are going to so much trouble scouring Timezone places for their associated Countries, it is a really good opportunity to slot in some Weather API interfacing to our Emoji World Flags web application, which is starting to be looking better and better as a trip planning aid.
Previous relevant Emoji Name Search Map Chart Tutorial is shown below.
We now have a three tier functionality hierarchy for our Emoji Flags of the World web application โฆ
- grandparent Emoji
Flags of the World live run, with this HTML and Javascript world_flags
html HTML and Javascript, unchanged from yesterdayโs Emoji Name Search Timezone Tutorial โฆ supervising โฆ
- parent emoticon_keyboard_shortcuts
php PHP partner, also unchanged from yesterday, because, today, our focus is on what this supervises โฆ
- child map
php PHP that changed in thisway (and which is an independent Google
Chart Map Chart interfacing live run in its own right)
โฆ all made so very possible when web applications sit in the same domain and you utilize the HTML iframe element.
We wanted to enhance its integration by โฆ
- adding in โlocality pinsโ for all PHP Timezone places in the country of interest
- involving Emoji flags in the Map Chart title (rather than as a pin) because Emojis, after all, are like textual data, not HTML (but can use HTML Entity representations in both)
To work the latter of these we called on recent experience with the โFifth Beatleโ discussion in Emoji Name Search Primer Tutorial โฆ
We got quite excited recently with Rainbow Games PHP Emoji Tutorial when we added a (fourth Beatle) emoji helper, called Emoji Terra, into the mix of tools to gather emoji information. Today, weโve got a new Emoji Search web application that introduces a new (fifth Beatle(?)) emoji helper tool to add into the โhow we see itโ mix โฆ
We found that Emoji Terra could be used in our map Chart interfacing PHP to look up the HTML Decimal Entity for a flag of a country via the URL pattern โฆ
HTTP://www.emojiterra.com/flag-for-[CountryNameSpacesMakeMinusSignsLowerCase]
So even though Google Chart Map Charts do not allow HTML in their titles there is nothing stopping you putting in an HTML Entity Emoji coding.
As far as the former goes, we again called on the PHP DateTimeZone class to scrutinize the first Timezone in the Map Chart title, derive its ISO 2 letter Country Code, and look through the array list of (PHP) Timezones to garner latitude and longitude, time now, and GMT offset information necessary to improve the โwhereโ and โwhenโ aspects of our Google Chart Map Chart interfacing.
Previous relevant Emoji Name Search Timezone Tutorial is shown below.
Yesterdayโs Emoji Name Search Map Tutorial was a step in the direction of โwhereโ functionality, but because PHP teams up with the supervisory HTML โEmoji World Flagsโ web application, to make all this happen, there is the opportunity to add interest by adding a โwhenโ aspect to how it works.
As weโve said many times now, should you have access to PHP, you also have access to its DateTimeZone class where Timezones can be linked to ISO 2 letter Country Codes, useful as an integration point as of recent times when we introduced ISO 2 letter Country Codes to todayโs (supervisory) liverunโs world_flags
html HTML and Javascript code.
But it is not HTML code that changes today. It is its PHP partner emoticon_keyboard_shortcutsphp changed in thisway, that arranges that its call of Google Charts Map Chart passes across a new URL โฆ
&ccode=[ISO 2 letter Country Code]
โฆ argument that uses a new PHP function as below (arrays shortened for practicality purposes) โฆ
<?php
function inctycodecheck($incd, $sofar) {
$nearname=["Africa/Abidjan","Africa/Accra", ... ]; // array of Timezone names
$retv="";
$retd="";
$otz = new DateTimeZone("UTC");
$jj=0;
$origin_dt = new DateTime("now", $otz);
for ($best1=0; $best1<sizeof($nearname); $best1++) {
try {
$tz = new DateTimeZone($nearname[$best1]);
$cloc = $tz->getLocation();
$ctrycode = $cloc['country_code'];
if (strtoupper($incd) == strtoupper($ctrycode)) {
$remote_dt = new DateTime("now", $tz);
$offset = ($tz->getOffset($remote_dt) - $otz->getOffset($origin_dt)) / 3600;
$newp=$retd . $nearname[$best1] . "/" . $remote_dt->format('Y-m-d_H:i:s') . " (GMT" . $offset . ")";
$huhs=explode(" (GMT" . $offset . ")", $retv);
if (sizeof($huhs) == 2) {
if (explode("/", $newp)[0] != explode("/", explode(",", $huhs[0])[-1 + sizeof(explode(",", $huhs[0]))])[0]) {
$huhs=explode("youwillneverfindthis", $retv);
}
}
if (($sofar + strlen(urlencode(($retv . $newp)))) < 950 && $jj < 10 && sizeof($huhs) == 1) {
$retv.=$newp;
$retd=",";
$jj++;
}
}
} catch (Exception $exc) { }
}
return $retv;
}
?>
โฆ called later in the code with the new block of code as per โฆ
<?php
$urlis=urldecode($_GET['gmc']); // URL to point at template Google Chart Map Chart call for Country of interest
if (strpos($urlis, ',,') !== false) {
$urlis=str_replace(",,", urlencode($latis . "," . $longis . ","), $urlis);
} else {
$urlis=str_replace(urlencode(",,"), urlencode($latis . "," . $longis . ","), $urlis);
}
if (isset($_GET['ccode'])) {
$urlis=str_replace("&onclick=", "%20" . urlencode(inctycodecheck(urldecode($_GET['ccode']), (strlen($urlis) + 3))) . "&onclick=", $urlis); // appends to the title argument
}
if (isset($_SERVER['HTTPS'])) {
if ($_SERVER['HTTPS'] == "on") {
header("Location: https:" . $urlis);
} else {
header("Location: http:" . $urlis);
}
} else {
header("Location: http:" . $urlis);
}
exit;
?>
Previous relevant Emoji Name Search Map Tutorial is shown below.
Yesterdayโs posted data Emoji Name Search Posting Tutorial functionality opened the door to โwhereโ web application (software) integration, because the wonderful Wikipedia has compiled Latitude,Longitude co-ordinate pairs for those countries, and that is our foot in the door to place an HTML a link under the Emoji flags, that points to our favourite โwhereโ interfacing tool, the Google Charts Map Chart.
Because the Map Chart and Emoji Flag web application share the same domain we can keep this functionality on this same Emoji Flag webpage in an โฆ
- HTML iframe element name=gcmi id=gcmi initially invisible โฆ โpopulated byโ โฆ
- HTML a element target=gcmi href=[URL to Map Chart for Country of Interest] onclick=aoc(); โฆ
function aoc() {
document.getElementById('gmci').style.width='450px';
document.getElementById('gmci').style.height='450px';
document.getElementById('gmci').style.display='inline-block';
}
Another way to zoom around the world online!
You can try the EmojiFlags live run (with underlying world_flags
html changed thisway) or the other Emoji functionalities that have this live
run and/or its PHP source code emoticon_keyboard_shortcuts
php changed in thisway to extend its software integration capabilities.
Previous relevant Emoji Name Search Posting Tutorial is shown below.
Yesterdayโs Emoji Name Search Tailoring Tutorial was suitable for data sets of that smaller size able to be handled by the web server limit of URL length. But what if there are too many data items in your data set to be handled by PHPโs $_GET[] array URL ? and & delimited URLs? We, having PHP serverside code at our disposal, can turn to $_POST[] (HTML) method=POST form action=[hereโsLookingAtYouKid] scenarios, to get around this issue. The unfortunate side effect of this is that the HTML mailto: a link (email client) method of sharing your Emoji web application relies on that $_GET[] approach, that is, unless you wrote a whole โbespokeโ web application to help out, like we do today for our new Emoji โWorld Flagsโ web application with this liverun, with this HTML and Javascript world_flags
html source code.
That new โsupervisorโ being a guinea pig idea into the $_POST[] thinking, we add some HTML form element input type=text additions to allow for, out of โฆ
- Emoji look class โฆ and โฆ
- Wording next to Emoji โฆ and โฆ
- URL of Wordingโs link, be that substituted or appended
โฆ mapped values, optionally, off a newly offered HTML form element input type=text for this mapped comma or blank separated word list.
Perhaps, now, you โlong data set thinkersโ want to try the liverun and/or its PHP source code emoticon_keyboard_shortcuts
php changed in thisway to extend its data set size capabilities.
Previous relevant Emoji Name Search Tailoring Tutorial is shown below.
Information Technology is full of โbuzz wordsโ, and am sure you wince at some to all of them yourselves. Thatโs a bit why am using โTailoringโ rather than โฆ
- sharing
- personalization
โฆ to give you a slumberrest from having to look under struck throughdeleted wording to look for hidden โbuzz wordsโterminology that makes your harehair sit upstand watchingon Bugs Bunnyend.
We think, perhaps, that emojis can be important for young โwould beโ programmers to launch into. Personally wonder how many โwould beโ programmers give the game up far too soon just because they donโt have those graphics skills, well, with emojis, a lot of that hard work, in miniature, has been done for you by some pretty creative people, so why not enjoy the fruits (chortle, in context, chortle) of their labour and start developing your own web applications to use them. Daily, their use is increasing, as are the sharing of access methods.
In todayโs extension to the functionality started with yesterdayโs Emoji Name Search Primer Tutorial we separate the Emoji Terra aspects to how it works and allow the user to โฆ
- supply an Emoji Word List of interest
- perhaps supply a heading and subheading to describe the โconceptโ of that list
- supply either a โฆ
- URL prefix โฆ or โฆ
- URL with the ~ (tilde) character where you want, substituted, your emoji name
โฆ to be a navigation destination in that similar new window navigation we used to access Emoji Terra โฆ
- presenting all this in an HTML form action=[hereโsLookingAtYouKid] method=GET โฆ
- that method=GET opening the door to be able to offer an email client engine method to
โshareโemail somebody the link to a screen that looks like the one youโre seeing
Of course, weโd like you to find some of your own such Emoji Display Dynamically Created Web Applications yourself, but to encourage, we, in the web application, today, identified two ideas, namely โฆ
- Fruit and Vegetables via Wikipedia at https://en.wikipedia.org/wiki/ as a prefix โฆ and โฆ
- Astrology via Cafe Astrology at https://cafeastrology.com/~dailyhoroscope.html via ~ (tilde) character substitution
โฆ each of which (and any you make will also) feature a link to the HTML mailto: a link out through the email client and to your recipient who can click the email link to โshareโcompare notes.
Perhaps, now, you want to try the liverun and/or its PHP source code emoticon_keyboard_shortcuts
php changed in thisway to extend its functionality, involving a reveal favourite of ours, the use of HTML(5)โs details (and summary) element.
You can also see this play out at WordPress 4.1.1โs Emoji Name Search Tailoring Tutorial.
Previous relevant Emoji Name Search Primer Tutorial is shown below.
We got quite excited recently with Rainbow Games PHP Emoji Tutorial when we added a (fourth Beatle) emoji helper, called Emoji Terra, into the mix of tools to gather emoji information. Today, weโve got a new Emoji Search web application that introduces a new (fifth Beatle(?)) emoji helper tool to add into the โhow we see itโ mix below โฆ
- Emojipedia is good for looking up Emoji names or concepts in words
- FileFormat Information is great for HTML Entity determinations for your less complex Emojis
- Iemoji is great for HTML Entity determinations for Emojis of all complexities
- Emoji Terra performs similar functionality as Iemoji but has a permalink organization more friendly to an โemoji search via emoji titleโ query, and that has suited our purposes today, and before, so, thanks a lot
- Emoji CSS performs similar functionality to Emojipedia, but has a pictorial view of Emoji names as well, right from the word go, thanks
With these emoji tools in mind we wrote a new PHP web application combining those last two to show Emojis pictorially (with their short name) initially and allow the user to search for an Emoji (match) list via their HTML input type=text (textbox) entry, which results in โฆ
- the Emoji (match) list look (as an Emoji โdisplayโ) โฆ and โฆ
- an HTML a link which is that Emojiโs short name โฆ linking to โฆ
- an Emoji Terra webpage with more detail, including HTML Entity information if โshort nameโ is unique, or one extra click away, if not
Maybe you need to try the liverun and/or its PHP source code emoticon_keyboard_shortcuts
php to download, perhaps?
Previous relevant Rainbow Games PHP Emoji Tutorial is shown below.
In order to take that further genericization step onto the achievements of yesterdayโs Rainbow Games Genericization Tutorial to get onto (the mathematics Induction principle inspired) โฆ
- prove for the first case
- prove for the second case
- prove for the nth case
โฆ we had a choice of โฆ
- continue on (with) the HTML code creation of new โhardcodedโ arrays (managed by Javascript eval abstractional approach) โฆ or โbite the bulletโ and โฆ
- try to work out a generic โemoji lookerer uppererโ arrangement
Guess you can tell we opted for the latter, huh?! We started the investigation of this by examining our three favourite emoji informational websites, namely โฆ
โฆ and were a bit surprised that we could not quite swing a generic method to glean the information, so donโt know whether our new โplayerโ is โRingo Starrโ or not, but can tell you this, โits beat is much better than its biteโ โฆ chortle, chortle โฆ
Emoji Terra performs similar functionality as Iemoji but has a permalink organization more friendly to an โemoji search via emoji titleโ query, and that suits our purposes today, so, thanks a lot. Without this query by โemoji titleโ possibility weโd have been forced to adopt more of those โhardcodedโ arrays, which would have been alright, but this second approach opens the door to โsportโ events in โThe Rainbow Gamesโ web application using emojis of the future (ie. they havenโt been invented yet).
How to work the interfacing to Emoji Terra?
- good olโ PHP serverside language
- good olโ PHPโs file_get_contents (supplemented by)
- good newish โPHP Source File as the Database Sourceโ weโve talked about in the past with PHP Require Database Primer Tutorial and Signature Signature PHP Tutorial whereby the PHP Source File updates itself with web application data
This new PHP emoji_lookupphp treats the โprove for the nth caseโ sports as ones to โฆ
- look up the emoji information for (in the order โPHP Source File as the Database Sourceโ then try file_get_contents of Emoji Terra lookup), and โฆ
- read the HTML partner source code live
runโs underlying HTML and Javascript and CSS emoji_walk_animation
htm (which changed in thisway)
- amend that HTML source to supplant the โSprintโ default sport for this new nominated sport โฆ trying not to fall over laughing at some of the new sports we present (inspired by a visit to Emoji Terra search)
- write out that amended HTML code as the web page (the beauty of a serverside language like PHP)
The more detailed specifics of the file_get_contents of Emoji Terra lookup above are โฆ
- build up a URL starting with HTTP://emojiterra.com/ โฆ then โฆ
- in emojiland arrangements there are two genders (as our prefixes if you will) โฆ woman- and man-
- then add on a โmiddleโ sport descriptor (eg. biking)
- in emojiland emoticonland arrangements there are five descriptors (as our suffixes if you will) โฆ -dark-skin-tone, -medium-dark-skin-tone, -medium-skin-tone, -medium-light-skin-tone, -light-skin-tone
- for that set of 2x1x5=10 URLs glean what โHTML decโ (HTML Entity) information you can glean via the file_get_contents call of the Emoji Terra URLs described above (eg. Emoji: Woman Biking: Dark Skin Tone) โฆ built into a Javascript array string to โplug intoโ the previously read HTML partner source code, and amended to output as the web page the user sees
Sports of the future in emojiland? Just ask for the equivalent of biking (above) off the user via a Javascript prompt window (on the proviso you read Conditional Alternative to Javascript Popup Windows in iOS Tutorial first please).
Previous relevant Rainbow Games Genericization Tutorial is shown below.
What would help genericize the recent Rainbow Games Double Transformation Tutorial โRainbow Gamesโ web application? How about introducing another sport?
Again, in honour of โonions of the 4th dimensionโ approaches, we mainly, turn to the power of Javascriptโs eval methodology to achieve this abstracted feeling to our web application. Today, with this, we go two thirds of the way along the โMathematical Inductionโ approach โฆ
- prove for the first case
- prove for the second case
- prove for the nth case
How does this use of Javascript eval manifest itself in this way?
- there are two arrays that work with the โcontentโ of our โRainbow Gamesโ sport(s) (well, at least, the first โsprint runningโ sport) called emoticons[] and choices[]
- wherever we find references in the code to either of these two arrays we start to involve the global variable verbsuffix โฆ
var verb='Sprint';
var verbs=['Sprint','Row'];
var anotherverb='run';
var verbsuffix='';
โฆ in altered ways like โฆ
function plus(ih,ihep) {
var outihep=ihep;
if (eval("emoticons" + verbsuffix + "[" + ih + "]").indexOf('<p>') != -1) {
outihep += ' (' + eval("emoticons" + verbsuffix + "[" + ih + "]").split('<p>')[1].split('<')[0] + ')';
}
return outihep;
}
โฆ in that abstracted way โฆ noting that sometimes you donโt need the โeval()โ encasings โฆ - and so, working through the code this way it just falls to the coder to define new members for all the arrays for all the new sports (ours is โrowingโ today), some of those new arrays (like for rowing are emoticonsrowing[] and choicesrowing[]) to involve โฆ
- looking up emoji definitions from โฆ
โฆ not forgetting to โฆ
- make sure the event logics work for multiple sport scenarios โฆ but mostly they do by sticking to the principles above โฆ especially for the โฆ
- new HTML select (dropdown) element allows the user to pick a sport
Remaining a work in progress, you can try out our liverun link that has underlying HTML and Javascript and CSS emoji_walk_animation
htm, and which changed in thisway regarding todayโs genericization work. We hope it gives you food for thought.
Previous relevant Rainbow Games Double Transformation Tutorial is shown below.
We were on the โroad to personalizationโ for the web application game we started with yesterdayโs Rainbow Games Primer Tutorial when โan old chestnutโ came up again. Itโs happened before, the desire to โdouble transformโ in CSS came about from our emoji โฆ
โฆ table cell mirroring styling as per โฆ
<style>
* { overflow-x: visible; }
select { font-size: 36px; }
td.runner { width: 50px; word-wrap: break-word; font-size: 36px;
transform: scale(-1, 1); -o-transform: scale(-1, 1); -moz-transform: scale(-1, 1); -ms-transform: scale(-1, 1); -webkit-transform: scale(-1, 1);
} //

tr { max-height: 40px; }
</style>
โฆ necessary to make our running emojis run from left to right (that, alas, also transformed any accompanying โฆ
Florence |
โฆ name), was added to in this double transformational clause to prove what this wonderful web page advice had to say. In other words, a โdouble transformโ CSS styling scenario like the one below โฆ
<style>
* { overflow-x: visible; }
select { font-size: 36px; }
td.runner { width: 50px; word-wrap: break-word; font-size: 36px;
transform: scale(-1, 1); -o-transform: scale(-1, 1); -moz-transform: scale(-1, 1); -ms-transform: scale(-1, 1); -webkit-transform: scale(-1, 1);
}
tr { max-height: 40px; }
p {
display: block;
font-size: 12px;
-webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
-moz-transform: matrix(-1, 0, 0, 1, 0, 0);
-o-transform: matrix(-1, 0, 0, 1, 0, 0);
transform: matrix(-1, 0, 0, 1, 0, 0);
} //
Florence
</style>
โฆ works as a โdouble transformโ to first โฆ
- mirror (image) flip the table cell (td) emoji data โฆ but us appending some โRunner Nameโ textual data underneath also, annoyingly, got flipped until โฆ
- within that (same) table cell (td) element and after the emoji data we append an HTML p(aragraph) element to both โฆ
- introduce a new HTML element type into the (CSS styling) mix โฆ and to โฆ
- introduce a new CSS transformation type, the matrix โฆ perhaps either or both new parts to the problem critical to its success when, believe me, lots of other approaches donโt work
โฆ to personalize the โrunnersโ and โusersโ, optionally, โinto the gameโ, by allowing the โuserโ to name their โrunnersโ and allow for a โrunner energyโ setting be a bit randomized, to add for some other interest โvarietyโ to the gameโs workings. So, still a work in progress that you can try out at our liverun link that has underlying HTML and Javascript and CSS emoji_walk_animation
html, and which changed in thisway regarding todayโs work.
Previous relevant Rainbow Games Primer Tutorial is shown below.
Itโs been a while since weโve written any conventional HTML and Javascript and CSS game. Todayโs game uses the โemoticonโ section of the Emoji character set, defaulting so far, to the โrunning womanโ emoji featuring in Compound Emoji WordPress Usage Tutorial.
Itโs the early days of our โRainbow Gamesโ web application, and weโre starting with the animation featuring horizontal hashtag navigation techniques for a running race start to our game. Where it finishes? Hard to say! Today, weโve looked at โsplitsโ and a finish line.
You can try out our burgeoning liverun game concept link that has underlying HTML and Javascript and CSS emoji_walk_animation
html.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.