javascript-mobile-app-template
Version:
Simple and fully customizable user interface template. Design for mobile app development on Capacitor or Cordova. Platforms: Android, iOS, Web.
51 lines (34 loc) • 1.23 kB
JavaScript
// Utils
;
const Utils = {};
Utils.useImageAsText = function(parameters = {}, editCreatedImage) {
if (!parameters.fontSize) parameters.fontSize = 20;
if (!parameters.outerSpaceRight) parameters.outerSpaceRight = 0;
if (!parameters.outerSpaceLeft) parameters.outerSpaceLeft = 0;
Utils.saveCurrentThat();
const htmText = document.createElement('span');
htmText.style.display = "inline-block";
htmText.style.marginRight = parameters.outerSpaceRight + "px";
htmText.style.marginLeft = parameters.outerSpaceLeft + "px";
const box = createBox(0, 0, parameters.fontSpace, parameters.fontSpace);
that.color = "transparent";
that.element.style.position = "relative";
that.element.style.overflow = "visible";
createImage(0, 0);
box.add(that);
editCreatedImage(that);
that.center();
htmText.appendChild(box.element);
Utils.restoreThatFromSaved();
return htmText.outerHTML;
}
Utils.savedThat = null;
Utils.savedExThat = null;
Utils.saveCurrentThat = function() {
Utils.savedThat = that;
Utils.savedExThat = previousThat;
}
Utils.restoreThatFromSaved = function() {
that = Utils.savedThat;
previousThat = Utils.savedExThat;
}