Use @mavoweb to solve everyday web-developer tasks without a single line of custom JS. For example, to make a dark theme switcher.
Covert the entire page to a Mavo app to see the effect “in global.”
Credits to @heydonworks. 🙏🏻
via @CodePen
#mavotricks
Build cross-platform apps with @mavoweb and @Ionicframework—use the powers of both worlds with a few lines of code provided by Mavo’s JS API (shortly—only by adding a plugin to your Mavo app).
Wanna give it a try? via
@CodePen
#mavotricks #mavoapi
Inspired by @MIT_CSAIL research paper, I built a fully customizable carousel widget using only HTML, CSS, and @mavoweb.
Here is the pen you can play with: via @CodePen
And here is the paper:
#mavotricks #widget #carousel
In @mavoweb, there is a way to get the first letter of any word: `first(split(word, ''))`.
Is there a way to get any character we need? Sure. Try this: `get(word, position)`.
#mavotricks #anycharacter
👇Read the thread
In @mavoweb, there are complex properties or groups. In most cases, groups inferred from the hierarchical structure of your properties and are represented by more than one HTML element.
Can one HTML element represent a group? The `typeof` attribute would help.
#mavotricks #typeof
If you want to change an element placeholder text which @mavoweb generates for you automatically, but changing the `aria-label` attribute value might break your app's #a11y, add to the element the `mv-edit-placeholder` attribute with the needed value.
#mavotricks #placeholdertext