Microlearning #158
-
Hi all, I recently discovered a company 7taps which is promoting microlearning. I think that the concept deserves its place in the educational landscape. https://app.7taps.com/qdLphlRyhk I think that this concept could be 'reproduced' with Liascript. My question is twofold - I saw that you have the option to load the 'app' on the phone. At least, it behaves like an app once you load the course on the phone. Is there an official app or how it is working? And second, do you see an option to make a layouting with Liascript which is also so slick? ;-) |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
That's quite interesting. It reminds me in a way of Anki cards. Only in this case it's for knowledge transfer and not for knowledge assessment. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your comments @cagix I used the Anki cards for learning a language lately. |
Beta Was this translation helpful? Give feedback.
-
@abotzki concerning the animation ... a starting point could be this (if I got you correct) <!--
@style
@keyframes zoomIn {
from {
transform: scale(0);
opacity: 0;
border: 5px solid black;
}
to {
transform: scale(1);
border: 1px solid black;
opacity: 1;
}
}
/* Apply the animation to the main element */
main {
animation: zoomIn 0.75s ease-in-out;
}
@end
-->
# Course Main Title You could define different animations for different elements... |
Beta Was this translation helpful? Give feedback.
@abotzki thanks for sharing ... I played around with OpenBadges by ICOBC that can be used also to for certificates for courses and micro-credentials ... anyways ...
The LiaScript-Website is a PWA, which stands for Progressive Web App:
https://en.wikipedia.org/wiki/Progressive_web_app
This is basically a WebSite with a manifest file and "service-worker", the service-worker is a JavaScript file and stores all required files within the browser-cache and does a bit more ... But the idea is, that such websites can be installed like native apps, but do not require something like a PlayStore ... Works also on desktop with Chrome ...
Basically it is also possible to export a LiaScript-course into…