Code Monkey home page Code Monkey logo

luffytaro22 / capstone-japan Goto Github PK

View Code? Open in Web Editor NEW
9.0 1.0 0.0 79.73 MB

First Capstone Project is the first big project at Microverse. The goal is to emulate a Conference Web Page with our own tematic. In my case, I decided to make a web Page about a Japanese Culture Festival.

Home Page: https://luffytaro22.github.io/Capstone-Japan/

License: MIT License

HTML 40.68% JavaScript 17.34% SCSS 41.98%
capstone japan microverse css html javascript

capstone-japan's Introduction

πŸ“— Table of Contents

πŸ“– First Capstone Project

First Capstone Project is the first big project at Microverse. The goal is to emulate a Conference Web Page with our own tematic. In my case, I decided to make a web Page about a Japanese Culture Festival.

πŸ›  Built With

Tech Stack

  • HTML
  • CSS
  • Javascript
  • Sass

Key Features

  • Multiple Platform's Supportive.
  • Mobile First.
  • Modern and attractive Interface.

(back to top)

πŸš€ Live Demo

(back to top)

πŸ’» Getting Started

Prerequisites

In order to run this project you need:

  • Internet connection.
  • Any device with a width of at least 320px.

Setup

To clone this repository to your desired folder, run the following command:

git clone https://github.com/Luffytaro22/Capstone-Japan.git

Deployment

You can deploy this project with This Link

(back to top)

πŸ‘₯ Authors

πŸ‘€ Manuel SΓ‘nchez

(back to top)

πŸ”­ Future Features

  • Additional Pages.
  • More Animations.

(back to top)

🀝 Contributing

Contributions, issues, and feature requests are welcome!

Feel free to check the issues page.

(back to top)

⭐️ Show your support

If you like this project please give it a star ⭐️

(back to top)

πŸ™ Acknowledgments

I would like to give credits to the following:

(back to top)

πŸ“ License

This project is MIT licensed.

(back to top)

capstone-japan's People

Contributors

luffytaro22 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

capstone-japan's Issues

Morning session: Peer-to-peer code review

Hello Manuel πŸ˜„
Hi @Luffytaro22! :D, you project looks very like the design provided, great job!πŸ’ͺ
We want to share wit you some advises to you can improve πŸ’ͺ🏼
@ITurres @Alibaba2023

  • [optional] you could do the identation in your html a little bit more compact, is better because the navigation for the reviewes it easy if you have a clean identation. πŸ‘πŸΌ

  • Please be kind and try to use class name more specific, is better if you describe with a one word the intention of the class or the intention πŸ€™πŸΌ
    image

  • On the activities.js file on line 96 I thank it would be better to give that child of activities' card a general class and select them in javascript with querySelectorAll and they will store in an array then you can add the display flex with foreach.

  • line 96 to 99 where you declare many activities based on their class and child. And then from line 103 to 104 where you add/remove the 'flex/none' properties:values.
    I think, yet not 100% sure, you might get away by query few elements within 1 'document.querySelectorAll', so there isn't much repetition, what I meant by this...
    e.g.

const activitiesToShowHide = document.querySelectorAll(
  '.activities:nth-child(3), .activities:nth-child(4), .activities:nth-child(5), .activities:nth-child(6)'
);

// or like @ali suggested (i think also ali's suggestion is better)
// you can add on the element a e.g. class 'hide-this-element' and just query all of the elements with that class

const activitiesToShowHide = document.querySelectorAll('.hide-this-element');

// and then you can loop through all of them and apply a 'toggle' method to either add or remove the 'flex' property which will make them disappear or show.
// this 'show-activity class will have a property of display and a value of flex'
//e.g.

activitiesToShowHide.forEach((activity) => {
  activity.classList.toggle('show-activity');
});

Again, some test should be run in order to confirm said method.

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.