csci 2133 rapid programming techniques for innovation
play

CSCI 2133 Rapid Programming Techniques for Innovation UI Design - PowerPoint PPT Presentation

CSCI 2133 Rapid Programming Techniques for Innovation UI Design CSS Grid and Flexbox CSCI 2133 2 Previous Lecture CSS / CSS3 SASS / SCSS CSCI 2133 CSS Layout 3 CSCI 2133 CSS Layout Whats a layout?


  1. CSCI 2133 – Rapid Programming Techniques for Innovation UI Design – CSS Grid and Flexbox CSCI 2133

  2. 2 Previous Lecture • CSS / CSS3 • SASS / SCSS CSCI 2133

  3. CSS Layout 3 CSCI 2133

  4. CSS Layout • What’s a layout? • Real-life examples • Basic Implementation • Columnlayoutwithflexbox • GridlayoutwithC S Sgrids CSCI 2133

  5. What’s a layout? CSCI 2133

  6. Layout= Globalstructure ofyourpage CSCI 2133

  7. Thelayoutis the page’sskeleton CSCI 2133

  8. What examples of layouts doyouknow? CSCI 2133

  9. Rowlayouts CSCI 2133

  10. Example– Homepage - Dalhousie CSCI 2133

  11. Example- Blogpost CSCI 2133

  12. Columnlayouts CSCI 2133

  13. Example– Dalhousie Outlook CSCI 2133

  14. Example– Dalhousie Outlook CSCI 2133

  15. Example- Facebook CSCI 2133

  16. Example- Facebook CSCI 2133

  17. Example - Slack CSCI 2133

  18. Example - Slack CSCI 2133

  19. Grid layouts bothmergedrows&columns CSCI 2133

  20. Example– Nova Scotia Portal CSCI 2133

  21. Example– Nova Scotia Portal Logo Navigation bar Headline Side Col ain Content Footer CSCI 2133

  22. Example- AnalyticsDashboard CSCI 2133

  23. Example- AnalyticsDashboard CSCI 2133

  24. Good Reference https://www.websitebuilderexpert.com/designi ng-websites/awesome-home-page-design- layouts/ (But do not trust advertising on this page) https://www.w3schools.com/css/css_website_l ayout.asp 24 CSCI 2133

  25. Layout basic implementation Credit to W3school 25 CSCI 2133

  26. Let’ scodea Header .header { background-color: #F1F1F1; text-align: center; padding: 20px; } CSCI 2133

  27. Let’ scodea Navigation Bar /* The navbar container */ .topnav { overflow: hidden; background-color: #333; } /* Navbar links */ .topnav a { float: left; display: block; color: #f2f2f2; text-align: center; padding: 14px 16px; text-decoration: none; } /* Links - change color on hover */ .topnav a:hover { background-color: #ddd; color: black; } CSCI 2133

  28. Content 28 CSCI 2133

  29. Content Implementation /* Create three equal columns that floats next to each other */ .column { float: left; width: 33.33%; } /* Clear floats after the columns */ .row:after { content: ""; display: table; clear: both; } /* Responsive layout - makes the three columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) */ @media screen and (max-width: 600px) { .column { width: 100%; } } 29 CSCI 2133

  30. Footer .footer { background-color: #F1F1F1; text-align: center; padding: 10px; } 30 CSCI 2133

  31. Result https://web.cs.dal.ca/~gang/csci2133-project/layout-demo/ 31 CSCI 2133

  32. Easy with flexbox CSCI 2133

  33. Flexbox -Vocabulary flexbox flex items CSCI 2133

  34. In aflexbox, items arenaturally placedby column .flexbox { display: flex; } CSCI 2133

  35. Then,youcandistributespace around orbetweenitemsusing justify-content .flexbox { justify-content: space-around; } CSCI 2133

  36. Then,youcandistributespace aroundor between itemsusing justify-content .flexbox { justify-content: space-between; } CSCI 2133

  37. Youcan center itemsvertically using align-items .flexbox { align-items: center; } CSCI 2133

  38. Youcan set the with of an item killing flex-grow and flex-shrink .fixed-item { flex: 0 0 25%; } CSCI 2133

  39. Youcan allow items to grow with a flex-grow .growing-item{ flex-grow: 1; } CSCI 2133

  40. Youcanallowitemsto go to the next line with flex-wrap .flexbox { flex-wrap: wrap; } CSCI 2133

  41. Lets look at login example again 41 CSCI 2133

  42. Code it .login-container { display: flex; width: 750px; height: 1334px; padding: 0; margin: 0; list-style: none; flex-direction: column; justify-content: flex-start; align-items: center; } 42 CSCI 2133

  43. Easy with CSS grid CSCI 2133

  44. First, define yourgrid CSCI 2133

  45. Then, define eachelement behavior “ I startrow 1 and take1 row I startcolumn1 and take2 columns “ CSCI 2133

  46. Then, define eachelement behavior “ I startrow 1 and take3 rows I startcolumn3 and take1 column “ CSCI 2133

  47. You are about to rewrite this website CSS by utilizing GRID 47 CSCI 2133

  48. CSCI 2133

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend