Codementor Events

Useful Tools For Web Developing

Published May 05, 2019Last updated May 10, 2019

Hello, Actually we are coding lot's of codes and lot's of lines, to do one thing.
but did you think about tools make develop much easier?
now i'll give you some tools to help you developing.

1- Bootstrap.

  • Bootstrap is a free and open-source CSS framework directed at responsive, mobile-first front-end web development. It contains CSS- and JavaScript-based design templates for typography, forms, buttons, navigation and other interface components.

Ex: <button type="button" class="btn btn-primary">Primary</button>

2- clippy

  • The clip-path property allows you to make complex shapes in CSS by clipping an element to a basic shape (circle, ellipse, polygon, or inset), or to an SVG source.

Ex: -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%); clip-path: polygon(50% 0%, 0% 100%, 100% 100%);

3- Animate.css

  • animate.css is a bunch of cool, fun, and cross-browser animations for you to use in your projects. Great for emphasis, home pages, sliders, and general just-add-water-awesomeness.

Ex:
<h1 class="animated infinite bounce delay-2s">Example</h1>

4- wow.js

  • It's Reveal Animations When You Scroll. And using Animate.css to animate, Easily customize animation settings: style, delay, length, offset, iterations...
    100% MIT Licensed, not GPL. Keep your code yours.
    ES2015+, naturally Caffeine free.

Ex:
<div class="wow">Content to Reveal Here</div>

5- CSS GRADIENT ANIMATOR

  • It's tool to make backgrounds easier.

Ex:


-webkit-animation: AnimationName 30s ease infinite;
-moz-animation: AnimationName 30s ease infinite;
animation: AnimationName 30s ease infinite;

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName { 
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

Discover and read more posts from Ahmad Herzallah
get started
post commentsBe the first to share your opinion
Show more replies