If you have been following our latest โEmoji Image (and other media)โ project of yesterdayโs Emoji Image Creator or Media Paster Download Tutorial you will know we have two (publicly displaying) โincarnationsโ of the inhouse bit of the PHP webpage โฆ
- first incarnation asks for user input via user interaction โฆ including storming out โฆ
- second incarnation shows results and now allows for downloading results as HTML snippets
โฆ and today we try to minimize the numbers of people storming out we hope. This is something running in our favour here, as these changes concern the first incarnation above.
- if you have a webpage waiting for user interactivity it doesnโt matter โฆ
- if you load it with display intensive CSS (such as our โglowโ animations) โฆ it doesnโt matter โฆ youโre waiting there anyway โฆ plus you are self-explaining
And there is not much better, to our mind, for โself-explainingโ and helping that little bit with internationalization, of your web application than to โฆ
- use emojis โฆ and fortunately for us with this web application here โฆ
- involve โend resultsโ of what your web application might achieve โฆ and fortunately for us with this web application that is emoji image border images and background images
A new block of CSS for that first incarnation is our progress, today, then (where data uri have been [nicknamed] below) โฆ
<?php echo โ
<style>
.cglow {
box-shadow-bottom-right-radius: 50%; // thanks to https://stackoverflow.com/questions/2714765/using-border-radius-and-box-shadow-together-css
box-shadow-bottom-left-radius: 50%;
box-shadow-top-right-radius: 50%;
box-shadow-top-left-radius: 50%;
-webkit-animation: cglow 1s ease-in-out infinite alternate;
-moz-animation: cglow 1s ease-in-out infinite alternate;
animation: cglow 1s ease-in-out infinite alternate;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.glow {
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
border: 30px solid white;
padding: 25px;
border-image:URL([owlToImageEmojiDataUri]);
border-image-slice: 45% 5%;
border-image-repeat: round;
text-align: center;
}
/* Thanks to https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_glowing_text */
@-webkit-keyframes cglow {
from {
box-shadow: 0 0 3px #fff, 0 0 5px #fff, 0 0 37px #e60073, 0 0 9px #e60073, 0 0 11px #e60073, 0 0 13px #e60073, 0 0 15px #e60073;
box-shadow-bottom-right-radius: 50%; // thanks to https://stackoverflow.com/questions/2714765/using-border-radius-and-box-shadow-together-css
box-shadow-bottom-left-radius: 50%;
box-shadow-top-right-radius: 50%;
box-shadow-top-left-radius: 50%;
}
to {
box-shadow: 0 0 24px #fff, 0 0 6px #ff4da6, 0 0 8px #ff4da6, 0 0 10px #ff4da6, 0 0 12px #ff4da6, 0 0 14px #ff4da6, 0 0 16px #ff4da6;
box-shadow-bottom-right-radius: 50%; // thanks to https://stackoverflow.com/questions/2714765/using-border-radius-and-box-shadow-together-css
box-shadow-bottom-left-radius: 50%;
box-shadow-top-right-radius: 50%;
box-shadow-top-left-radius: 50%;
}
}
@-webkit-keyframes glow {
from {
box-shadow: 0 0 3px #fff, 0 0 5px #fff, 0 0 37px #e60073, 0 0 9px #e60073, 0 0 11px #e60073, 0 0 13px #e60073, 0 0 15px #e60073;
}
to {
box-shadow: 0 0 24px #fff, 0 0 6px #ff4da6, 0 0 8px #ff4da6, 0 0 10px #ff4da6, 0 0 12px #ff4da6, 0 0 14px #ff4da6, 0 0 16px #ff4da6;
}
}
input[type=text] {
padding: 25px 0;
}
input[type=submit] {
padding: 10px 10px 10px 10px;
width: 25%;
height: 100px;
background:linear-gradient(rgba(255,255,255,0.8),rgba(255,255,255,0.8)),URL([owlToImageEmojiDataUri]);
background-size: cover;
background-repeat: no-repeat;
border: 2px solid yellow;
}
input[type=button] {
padding: 10px 10px 10px 10px;
width: 25%;
height: 100px;
}
#video {
background:linear-gradient(rgba(255,255,255,0.8),rgba(255,255,255,0.8)),URL([videoEmojiDataUri]);
background-size: cover;
background-repeat: no-repeat;
border: 2px solid yellow;
}
#audio {
background:linear-gradient(rgba(255,255,255,0.8),rgba(255,255,255,0.8)),URL([audioEmojiDataUri]);
background-size: contain;
background-repeat: no-repeat;
border: 2px solid yellow;
}
</style>
โ; ?>
Try this new look functionality which exists in ourchanged PHP emoji_imagephp live
run, for you to try all this for yourself, yet again.
Previous relevant Emoji Image Creator or Media Paster Download Tutorial is shown below.
Yesterdayโs Emoji Image Creator or Media Paster Tutorial continued our โEmoji Image (and media)โ web application projectโs progress, that we see in the analogous terms below โฆ
Project | Analogy |
---|---|
First webpage incarnation with textbox and textarea and buttons is displayed. | The user is shown the menu for goods creation. |
On first webpage incarnation user assembles emojis and/or text into textbox and textarea and clicks appropriate button, as required. | Goods are imagined by prospective user to their requirements. |
User copies from third party resource and pastes (that copy) into second webpage incarnation table cell. | Goods are created by prospective user to their requirements with help of third party resources. |
Web application reworks media into border and background element enhancements on second webpage incarnation. | Goods are packed into containers and shipped to user port. |
? | User gets goods off ship in port ready for personal use. |
What ? (dare we say) โonions of the 4th dimensionโ amendment could help our project? Anyone, anyone? Yes, Tomas Norstrรถm to get data from โremote woooooorrrrrrllllldโ to โlocal woooooorrrrrrllllldโ you โฆ
And in order for this to โvalue addโ letโs arrange for the user to be able to โdownloadโ second webpage incarnation elements of interest, by clicking them, after initially (just) displaying them. We do this for an โexistent element content of interestโ called [contentOfInterest] via the nesting of that [contentOfInterest] as per โฆ
<a download style="cursor:pointer;text-decoration: underline overline dotted red;" target=_blank href="data:text/html,[htmlWorkedContentOfInterest]">[contentOfInterest]</a>
โฆ as the concept we match to the new Javascript function โactualityโ โฆ
<?php echo โ
function downloaditize(ois) {
var xrect=ois.getBoundingClientRect();
var fromc=\" style='\";
var toc=\" style='width:\" + xrect.width + \"px;height:\" + xrect.height + \"px;\";
var ihis='', stys=[];
var wasihis=ois.innerHTML;
if (wasihis.indexOf(' download') == -1) {
if (('' + ois.id).indexOf('borderimg') == 0) {
ihis='<html><body' + toc + \"'\" + '>' + ois.innerHTML.replace('[asBelow]', ('data:' + document.getElementById('result').innerHTML.split('data:')[1].split('</')[0].split(')')[0])).replace(' transparent',' white') + '</body></html>';
while (ihis.indexOf(String.fromCharCode(34)) != -1) {
ihis=ihis.replace(String.fromCharCode(34),String.fromCharCode(39));
}
while (wasihis.indexOf(String.fromCharCode(34)) != -1) {
wasihis=wasihis.replace(String.fromCharCode(34),String.fromCharCode(39));
}
//console.log(wasihis);
//console.log('<a download style=\"cursor:pointer;text-decoration: underline overline dotted red;\" target=_blank href=\"data:text/html,' + wasihis.replace(/\<\;/g,'<').replace(/\>\;/g,'>').replace('[asBelow]', document.getElementById('result').innerHTML).replace(' transparent',' white') + '\" title=\"Download here\">' + wasihis + '</a>');
ois.innerHTML='<a download style=\"cursor:pointer;text-decoration: underline overline dotted red;\" target=_blank href=\"data:text/html,' + wasihis.replace(/\<\;/g,'<').replace(/\>\;/g,'>').replace('[asBelow]', document.getElementById('result').innerHTML).replace(' transparent',' white') + '\" title=\"Download here\">' + wasihis + '</a>';
} else {
if (('' + ois.id) == 'result') {
ihis='<html><body>' + ois.outerHTML.replace('[asBelow]', ('data:' + document.getElementById('result').innerHTML.split('data:')[1].split('</')[0].split(')')[0])).replace(' transparent',' white').replace(' title=', ' style=').replace('{',' ').replace('}',' ').replace('#' + ('' + ois.id),' ') + '</body></html>';
} else {
ihis='<html><body><table><tr>' + ois.outerHTML.replace('[asBelow]', document.getElementById('result').innerHTML).replace(' transparent',' white').replace(' title=', ' style=').replace('{',' ').replace('}',' ').replace('#' + ('' + ois.id),' ') + '</tr></table></body></html>';
}
while (ihis.indexOf(String.fromCharCode(34)) != -1) {
ihis=ihis.replace(String.fromCharCode(34),String.fromCharCode(39));
}
stys=ihis.split(\"' style='\");
if (stys.length == 3) {
ihis=ihis.replace(\"' style='\" + stys[2], \" \" + stys[2]);
}
if (('' + ois.id) != 'result') {
console.log('<a download style=\"cursor:pointer;text-decoration: underline overline dotted red;\" target=_blank href=\"data:text/html,' + ihis.replace(fromc,toc) + '\" title=\"Download here\">' + wasihis + '</a>');
}
ois.innerHTML='<a download style=\"cursor:pointer;text-decoration: underline overline dotted red;\" target=_blank href=\"data:text/html,' + ihis.replace(fromc,toc) + '\" title=\"Download here\">' + wasihis + '</a>';
}
}
}
โ; ?>
โฆ making use of the โtext/htmlโ mime type data uri alternative means of expressing HTML content (in special scenarios). Once in the โlocal woooooorrrrrrllllldโ opportunities exist to play around with downloaded files and involve a local web server system such as the MAMP Apache/PHP/MySql local web server we cannot speak too highly, regarding.
This new downloading functionality exists in ourchanged PHP emoji_imagephp live
run for you to try all this for yourself, again.
Previous relevant Emoji Image Creator or Media Paster Tutorial is shown below.
Thinking about yesterdayโs Emoji Image Creator CSS Background Image Tutorialโs โฆ
- existent Emoji Image creation functionality โฆ the next โonions of the 4th dimensionโ amendment could involve โฆ
- add Audio Copier and Paster functionality โฆ and โฆ
- add Video Copier and Paster functionality โฆ to round out what a lot of us see as the โmedia setโ in the online woooooorrrrrllllld
With these last two, we pare down the workings and leave it up to the user to copy these Audio and/or Video media data via Finder (in macOS) or Windows Explorer (in Windows) as a โreplacement widgetโ for the โGoogle Pagespeedโ widget weโve coded for regarding (Emnoji) Image media work.
Most crucial in these changes were the Javascript jQuery (and PHP helping out) code changes โฆ
<?php
$ei=โEmoji Imageโ;
$cr=โCreatorโ;
$imgw=โimageโ;
$iimage=โimageโ;
$iaudio=โywnftโ;
$ivideo=โywnftโ;
$gps=โwindow.open(\โhttps://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.rjmprogramming.com.au%2FPHP%2Femoji_image.php&tab=mobile\โ,\โ_blank\โ,\โtop=50,left=50,height=900,width=1300\โ);โ;
$hblurb=โCopy (Image) from Google PageSpeed
(thanks, and note to toggle between mobile and desktop tabs perhaps)
and Paste via macOS Alt-PrtScr Below (for Data URI as well)
or to an Image Editor that can Crop out Extraneous White Parts
or Resize Image and Save
(ready for Border Image or Background Image or just Image purposes)โ;
if (isset($_GET[โaudioโ])) {
$hblurb=โCopy Audio
via Finder or Windows Explorer
and come Back Here to Paste that Dataโ;
$ei=โAudioโ;
$cr=โPasterโ;
$imgw=โaudioโ;
$iaudio=โaudioโ;
$iimage=โywnftโ;
$ivideo=โywnftโ;
$gps=โโ;
} else if (isset($_GET[โvideoโ])) {
$hblurb=โCopy Video
via Finder or Windows Explorer
and come Back Here to Paste that Dataโ;
$ei=โVideoโ;
$cr=โPasterโ;
$imgw=โvideoโ;
$ivideo=โvideoโ;
$iaudio=โywnftโ;
$iimage=โywnftโ;
$gps=โโ;
}
echo โ
<script type='text/javascript'>
var done=false;
var btype='';
$(document).ready(function() {
$('#editor').on('paste', function(e) {
var orgEvent = e.originalEvent;
for (var i = 0; i < orgEvent.clipboardData.items.length; i++) {
if (orgEvent.clipboardData.items[i].kind == \"file\" && (('' + orgEvent.clipboardData.items[i].type).substring(0,6) == \"" . $iimage . "/\" || ('' + orgEvent.clipboardData.items[i].type).substring(0,6) == \"" . $iaudio . "/\" || ('' + orgEvent.clipboardData.items[i].type).substring(0,6) == \"" . $ivideo . "/\")) {
var imageFile = orgEvent.clipboardData.items[i].getAsFile();
var fileReader = new FileReader();
btype=('' + orgEvent.clipboardData.items[i].type);
fileReader.onloadend = function() {
$('#result').html(fileReader.result);
andthen(btype);
}
fileReader.readAsDataURL(imageFile);
break;
}
}
});
});
// lots more Javascript follows
</script>
โ; ?>
This new audio and/or video media functionality exists in ourchanged PHP emoji_imagephp live
run for you to try all this for yourself.
Previous relevant Emoji Image Creator CSS Background Image Tutorial is shown below.
The recent โฆ
- Emoji Image Creator CSS Border Image Tutorial โฆ is being followed up today by โฆ
- Emoji Image Creator CSS Background Image Tutorial
โฆ before we say โBIyeโ to the Emoji Image themed blog postings here.
As many users will know, emojis can be the graphically-challenged userโs ticket to โฆ
- personalization
- graphical and aesthetic appeal of webpages
- attracting attention to your content
โฆ that is much easier than learning the graphical expertise Photoshop and Gimp usage encourages. But too much emoji usage can look a bit predictable too, so we are not discouraging you from learning any of those graphical expertise skills.
Emojis are limited from a lot of CSS styling border and background image usage, but we can convert those Emojis into images here, which is the gist of what we are on about here on this blog posting thread.
In order to show a bit of background image work we sprinkle the webpage with four CSS styling examples of usage (ordered from the top to bottom and left to right) โฆ
<style>
- #hthree { background:linear-gradient(rgba(255,255,255,0.3),rgba(255,255,255,0.3)),URL([asBelow]); background-size:cover; background-repeat:no-repeat; }
- #thone { background:URL([asBelow]); background-repeat:no-repeat; }
- #thtwo { background:linear-gradient(rgba(255,255,255,0.3),rgba(255,255,255,0.3)),URL([asBelow]); background-repeat:repeat; }
- #result { background:linear-gradient(rgba(255,255,255,0.3),rgba(255,255,255,0.3)),URL([asBelow]); background-size:contain; background-repeat:no-repeat; }
</style>
โฆ and added dynamically because โฆ
- <style> CSS </style> is not restricted to just <head></head> but can also work within <body></body> โฆ and โฆ
- for that <body>[document.body.innerHTML]</body> usage Javascript (DOM, within document.body.innerHTML) can dynamically add the CSS styling at a time of the programmerโs choosing
And so yet again, here is ourchanged PHP emoji_imagephp live
run for you to take up both the Border Emoji Image CSS Challenge and, now, Background Emoji Image CSS Challenge!
Did you know?
Thanks to this wonderful link we were able to get around our โmobile platforms not showing our (independently tested that whitespace cropping was occurring whether in png format or in jpeg format) image CSS border image applicationsโ issue by changing the CSS โฆ
From (suits non-mobile) | To (better suiting mobile) |
---|---|
#borderimg1 { border: 20px solid transparent; } |
#borderimg1 { border: 20px solid white; } |
#borderimg2 { border: 20px solid transparent; } |
#borderimg2 { border: 20px solid white; } |
Previous relevant Emoji Image Creator CSS Border Image Tutorial is shown below.
Before building on the recent Emoji Image Creator Share Tutorial with progress (of a meaningful quality) regarding โฆ
- CSS Border Images (made from data-uri data of these recent Emoji Images) โฆ we had to โcrackโ โthe ol'โ โฆ
- automating the cropping of bottom and right whitespace
โฆ because you will find only the top border image bits โfilled outโ if the imagery in the CSS โborder-image:URL([data-uri data of these recent Emoji Images]);โ has a lopsided whitespace feel to it. PHP can easily do this out of the box from PHP 5.5 onwards via its GD library imagecropauto function. Alas, up at the RJM Programming domain we are on PHP 5.4 and so ended up being helped out enormously by the brilliant ideas on this wonderful link, thanks.
Okay, so we can arrive at a whitespace cropped Emoji Image data uri, what then? Well, we recommend you read โฆ
- border image โฆ and off that, most importantly, perhaps โฆ
- border-image-slice property
โฆ and we display a couple of examples of uses of Border Images using the resultant Emoji Image data uri you create.
So, are you ready for the challenge? Yet again, here is ourchanged PHP emoji_imagephp live
run for you to take up that Border Emoji Image CSS Challenge!
Previous relevant Emoji Image Creator Share Tutorial is shown below.
We have a couple of โonions of the 4th dimensionโ amendments to yesterdayโs Emoji Image Creator Primer Tutorial โฆ
- the display format scope of the Emoji Image Creator โpaletteโ (โshall we say now โฆ eh wot โguvโ) extends from single line of entry to be able to handle multiple lines of entry โฆ and Emojis being text that means either โฆ
- div contenteditable=true โฆ but we have plumped for โฆ
- textarea
โฆ means by which to make this
thangthing happenmanperson - the sharing scope of the Emoji Image Creator goes from โkeeping everything to yourselfโ to โsharing via Email (email client or Inline HTML Email) or SMSโ
โฆ your Emoji Image creations. And โฆ
โฆ here? โฆ or am I missing something? Canโt be โฆ Iโm writing this.
Glad thatโs over!
And back to matters at hand, how do we handle that โrequireโ attribute weโd placed on yesterdayโs lonesome textbox? Well, we get around that by setting an empty textbox to a space should the user only enter Emoji data in that new textarea (that circumvents the โrequireโ attribute validation restriction), and deploy logic that takes into account PHP variables where โฆ
<?php
$gei="";
if (isset($_GET['emoji_textarea_image'])) {
$gei=str_replace("+"," ",urldecode($_GET['emoji_textarea_image']));
}
if (trim($gei) != "" || isset($_GET['emoji_image'])) {
if (trim($gei) == "") {
$gei=str_replace("+"," ",urldecode($_GET['emoji_image']));
} else if (isset($_GET['emoji_image'])) {
$pregei=str_replace("+"," ",urldecode($_GET['emoji_image']));
if (trim($pregei) != "") {
$pregei.="\n\n" . $gei;
$gei=$pregei;
}
}
file_put_contents('emoji_image.txt', str_replace(";","",str_replace("&#","",str_replace(";&#",".",$gei))) );
// more logic follows to continue the work below ...
}
?>
โฆ PHP function trim comes to our aid, as it so often does in โPHP landโ (or as String.trim() does in โJavascript landโ) with backward compatibility for dual purpose scenarios.
And again, here is ourchanged PHP emoji_imagephp live
run for you to retry, and perhaps, share!
Previous relevant Emoji Image Creator Primer Tutorial is shown below.
Weโve long eyed up the wish to have emojis (which you need to know are text (and this very fact is the reason for this whole project)) be involved with a border image or background image or just with some image in work developing web applications. And so we joined forces with (and thanks to) โฆ
โฆ along with โฆ
- textbox reachable โEmoji and Symbolsโ menu to include Emoji characters (though we also accept Emoji CodePoint(s) too)
- Copy and Paste technologies โฆ
- Copy (Image) from Google PageSpeed
- Paste to HTML div contenteditable=true via Stack Overflow and jQuery
- your own desktop Image Editors โฆ for example โฆ
- Gimp can Crop and Resize and Select to new Image via Copy then Paste
- Preview and Paintbrush (here on macOS) can Resize and Select to new Image via Copy then Paste
โฆ can help remove any extraneous whitespace coming off the Google PageSpeed Copy image
With all this help coming our way youโd think we might get away just using HTML and Javascript, but no, we need PHP, we figure, using a web browser file to toggle between web application executions that have no arguments as either โฆ
- it means we display our inhouse interactive entry mode of use when that file does not exist โฆ whereas โฆ
- we arrange it so that it is a call from Google PageSpeed when that file exists (as we morph inhouse content into a single p element containing the Emojis in such a scenario) as Google PageSpeed takes its
screenwebpageshot
So here is our PHP emoji_imagephp live
run โฆ
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.