Documentation of implementation of First Project(Static Page) Software Group Project Group project:...

12
Documentation of implementation of First Project(Static Page) Software Group Project Group project : Abd al rahman abu nada , Osama ja3ror , Wesal abu taoahen

Transcript of Documentation of implementation of First Project(Static Page) Software Group Project Group project:...

Page 1: Documentation of implementation of First Project(Static Page) Software Group Project Group project: Abd al rahman abu nada, Osama ja3ror, Wesal abu taoahen.

Documentation of implementation of First Project(Static Page)

Software Group ProjectGroup project:

Abd al rahman abu nada,Osama ja3ror,

Wesal abu taoahen

Page 2: Documentation of implementation of First Project(Static Page) Software Group Project Group project: Abd al rahman abu nada, Osama ja3ror, Wesal abu taoahen.

Description Object

Master page Contain the parts of Pages that Repeated in all pages

Master Page

Contain information about University and Engineering Department Specialized Software engineering department

Main Page

Contain information of instructors in the department

Teacher Page

Contain data about Courses in the department

Course Description

Menu Of three Pages User control(right menu)

Header of site Header Footer of site footer

Page 3: Documentation of implementation of First Project(Static Page) Software Group Project Group project: Abd al rahman abu nada, Osama ja3ror, Wesal abu taoahen.

Master Page

Master page contain css , JavaScriptHeader area , menu area , footer area ,

Contentplaceholder (the area that allowed to pages that follow master page to add items in it )

Page 4: Documentation of implementation of First Project(Static Page) Software Group Project Group project: Abd al rahman abu nada, Osama ja3ror, Wesal abu taoahen.
Page 5: Documentation of implementation of First Project(Static Page) Software Group Project Group project: Abd al rahman abu nada, Osama ja3ror, Wesal abu taoahen.

Main Page(about university and software engineering department)

Page 6: Documentation of implementation of First Project(Static Page) Software Group Project Group project: Abd al rahman abu nada, Osama ja3ror, Wesal abu taoahen.

Teacher

Teacher site contain Name of instructor,Email address,Mobile no,

Instructor imagePanel ,and button to hide and show

Page 7: Documentation of implementation of First Project(Static Page) Software Group Project Group project: Abd al rahman abu nada, Osama ja3ror, Wesal abu taoahen.

Teacher

We use javascript to hide and show data about instructor______________________________

<script language="javascript"> $(document).ready(function(){ $("[id$=HyperLink1]").click(function(){ $(this).parent().next().slideToggle("slow"); if($("[id$=HyperLink1]").hasClass("hiden")) { $(this).text("اظهار"); $(this).removeClass("hiden"); $(this).addClass("show"); } else//($("[id$=HyperLink1]").hasClass("show")) { $(this).text("اخفاء"); $(this).removeClass("show"); $(this).addClass("hiden"); } return false; });

Page 8: Documentation of implementation of First Project(Static Page) Software Group Project Group project: Abd al rahman abu nada, Osama ja3ror, Wesal abu taoahen.
Page 9: Documentation of implementation of First Project(Static Page) Software Group Project Group project: Abd al rahman abu nada, Osama ja3ror, Wesal abu taoahen.
Page 10: Documentation of implementation of First Project(Static Page) Software Group Project Group project: Abd al rahman abu nada, Osama ja3ror, Wesal abu taoahen.

MenuTo make

animation to menu

Menu

Css to improve the shape of

menu

Page 11: Documentation of implementation of First Project(Static Page) Software Group Project Group project: Abd al rahman abu nada, Osama ja3ror, Wesal abu taoahen.
Page 12: Documentation of implementation of First Project(Static Page) Software Group Project Group project: Abd al rahman abu nada, Osama ja3ror, Wesal abu taoahen.

Thank you