Sunday 18 June 2017

Animation with div tag of html and css coding by top4ways


Animation with html and css coding.
This animation is created with 60 div element placed in a line and each div has an id="dsa" but different class name (d1,d2,d3.........d60).

What you need for creating animation like above.
  • Basic knowledge of html and css.
  • Text editor like notepad , better if you use Standard code editor.



Lets start coding to create animation like this one.

Step first:- Open an text editor and write the basic structure of html5 and start coding as in step below

Step second :- Now create div elements and give same class name to all div and different id to all.



Step third :- Now create stylesheet with style tag and define appearance of div by selecting id and class name as in below code.



Step fourth: - Now define css for animating div as in below code.



Step fifth :- Now combine and save this codes in a right way and Run it on browser.

Thursday 15 June 2017

Animation with html tag circle and rect and @keyframes css property by top4ways



What you need for this animation :-
●Basic knowledge of html and css.
●Text editor like Notepad, Better if you use any code editor.

List of html tags and css used
  1. circle
  2. style
  3. svg
  4. rect

Lets start coding for creating above animation :-
Step first: Create an svg elements and define its height and width.
Step second : create a rect tag with id or class and then create five circle tag with different id or class. As in below code: -

Step third: - After completing second step create a style tag and define cx , cy , fill and r of circle by selecting id or class name one by one for all circle.
Step fourth: - After completing third step define @keyframe for all circle and define value you want to chane with time.
After completing all the step the code looks like the below code: -

Step fifth: - Save this text file with html extension and run it on any html supported browsers.

Wednesday 14 June 2017

Animation with rect (rectangle) and css property by top4ways


Animation with html and css coding. Take a look to animation first.



List of html tags used
  • rect used for creating a rectangle.
  • animate used for changing property of rectangle like x and y position ,color,width and height.

Lets start coding for creating above animation. Step first : Create an svg elements and define its height and width. Second step: insert rect tag between the opening and closing tag of svg and define its property:-
  1. x position of top-left corner of rectangle on x axis
  2. y position of top-left corner of rectangle on y axis
  3. width and height(You can leave if you want to animate it continues.)
  4. fill define color of rectangle

Step third: Write animate tag inside the opening and closing tag of rect(rectangle) and define its property:
  1. attributeName used to select attribute of rectangle,circle and other svg elements that can be changed with time
  2. from define initial value of attribute
  3. to define final value of attribute
  4. dur define time interval for change in value from initial value to final value .
  5. repeatCount define how many times the animation repeat.

After defining all appropriate value and attributes, the code looks like the below code :

Setp fourth: Now save this code text file with html extension and run it on any html supported browser.

Tuesday 13 June 2017

New edition of Animation with html and css (line, animate and and css property) - top4ways


New edition of animation with html and css(line , animate and css property ) - top4ways
The below animation is created with the help of html5 and css.

Take a look to the animation first.




What you need for this animation ?
  • Basic knowledge of html and css.
  • Text editor like Notepad, Better if you use code editor.

List of html tag and css property used in this animation.
  • line tag used 96 times
  • animate tag used 192 times
  • stroke
  • stroke-linecap
  • stroke-width

Lets start coding for creating above animation
Step first : Create svg (scalable vector graphics) and define its height equal to width.(example width="600" height="600").As in the below code -


Step second :Create line tag inside the svg and define its x1, y1, x2, y2, and some css property (x1,y1 define initial point of line and x2,y2 are its final point ) as in below code: -


This code will create only one line, you have to write this code too many times (for each line) and change its initial and final point. This is new edition of a animation published yesterday and there is only some changes . Added a new animate property for every line stroke-width from 0-5 and change in color.
Step third :After defining all line for the above animation the code looks like the below code.



Step fourth: Now save this text file with html extension and run it on any browser.
If you have any problems in saving this animation file. You can download it just click on the download botton.

Saturday 10 June 2017

Animation with div svg circle and animate tags


The below animation is created with the help of html5 and css.
Take a look to the animation first.




What you need for this animation ?
  • Basic knowledge of html and css.
  • Text editor like Notepad, Better if you use code editor.



Lets start coding for creating above animation.
List of html tags used in above animation.
    Tag used
  • div used 4 times
  • svg used 4 times
  • circle used 20 times
  • style
  • animate used 20 times

Method to create above animation :-
Step first: Create four div tags with different id or class name.
Step second : Create one-one svg elements between each div element. And define its height and width and create 5 circle between each svg elements. Then the code look like the below code: -

Step third: Now we will define the css for the whole code to make the animation complete. As the below code :-
Step fourth: Now place the code from second step inside the body tag and code from third step inside the style tag in below format for completing the above animation.

Step fifth : Save the code in html extension and run it on any html support browser.
If you have any problems in saving this animation file. You can download it just click on the download botton.