Skip to content

zaahidali/Web-Engineering-Lab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 

Repository files navigation

Web Engineering Tasks

1) Image Slider (with "Next" and "Previous" buttons)

  • Using JS to created an image slider, that changes the images with a click of "next" or "prev" buttons

2) Image Slider (automatic, without button)

  • Created a similar image slider as mentioned in (1) with a slight change i.e. The images is changing automatically with a 5 seconds delay between each image

3) Moving box inside a div

  • Created two "divs" one inside the other, wrote JS code to make the inner div(box) move around the edges of the outer box.

4) Table Creation (using rows, cols and color as input and dynamically creating a table)

  • Created an HTML page that takes 3 input from the user i.e. a row size, a column size and a color picker. Once the user submits the given input, the JS code would create a table dynamically with the specified number of rows and columns and the specified color set as background color.