Posts

Showing posts from April, 2019

Release 0.4, Second Blog

For my final release, I decided to stick with the project that I already worked on called Vibranium .  The ticket was to create a page pre-loader similar to the one that git-hub or medium websites use.  I never worked with animation in CSS before, so this issue was a great opportunity to learn something new. Steps to create an animation: The first step of building a CSS animation is to defining individual keyframes and naming an animation with a keyframes declaration. The second step is referencing the keyframes by name using the  animation-name  property as well as adding  animation-duration  and other optional animation properties to control the animation's behavior. Here's how I created a spinning square animation using keyframes in css: @-moz-keyframes spin { from { -moz-transform: rotate(0deg); } to { -moz-transform: rotate(360deg); } } @-webkit-keyframes spin { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); } }

Release 0.4, First Blog

For the Final release, I have a few projects to work on in mind. The first one is  VS Code , and I'm also looking into  Filer  issues. Here's the one ticket I'm trying to do now:  https://github.com/Microsoft/vscode/issues/71690 It requires adding a border around the vscode window, in order to be able to differentiate vs code from Visual Studio when using both at the same time, and their windows overlap. In order to set up this project, I used:  yarn watch  to start TypeScript incremental builder. And then:  .\scripts\code.bat   to test the changes. In case this ticket won't work out, I'm planning to continue working on  Vibranium  project from my previous release. Issue:  https://github.com/kelvinkamau/Vibranium/issues/63