Code Monkey home page Code Monkey logo

holberton-smiling-school-javascript's Introduction

Holberton SmileSchool Javascript

Description

Implement 3 web pages with Bootstrap and javascript (jQuery)

mockup


  • Copy files from 0x0B. Implement a design with bootstrap
    • homepage.html -> 0-homepage.html
    • pricing.html -> 0-pricing.html
    • courses.html -> 0-courses.html
    • styles.css and any files/folders needed (images, fonts…)
  • Interactions note:
    • Web pages must switch to the tablet version when the screen width is 768px
    • Web pages must switch to the mobile version when the screen width is 576px
    • button hover/active: opacity: 0.9
  • Replace static quotes by dynamic loading

Example of my loader:

<div class="loader"></div>
.loader {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #C271FF;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

Final result: final_result

  • Replace static video cards by dynamic loading
    • URL: https://smileschool-api.hbtn.info/popular-tutorials
    • No static video cards should be present in the section
    • During the Ajax request, a loader should be present
    • Carousel should work by sliding card by card (like GIF below) - this kind of carousel is not unique, make it generic to reuse it easily!
    • Don’t forget the responsive part!

Final result: final_result_2

  • Replace static video card by dynamic loading

Final result: final_result_3

  • Replace static quotes by dynamic loading:
  • Replace static video card by dynamic loading:
    • URL: https://smileschool-api.hbtn.info/courses
    • No static video cards should be present in the section
    • During the Ajax request, a loader should be present

result

  • Convert all your JSON Ajax call to another API… a XML API!

Author

Joshua Martinez - dantsub :octocat: | linkedIn: danstub | Twitter: @DanyJoshi

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.