Chat with us, powered by LiveChat For this project, you will be writing most of your code in js/app.js.? Rubric Tip: All the points mentioned below will help you to satisfy the criter - EssayAbode

For this project, you will be writing most of your code in js/app.js.? Rubric Tip: All the points mentioned below will help you to satisfy the criter

 

For this project, you will be writing most of your code in js/app.js

Rubric Tip: All the points mentioned below will help you to satisfy the criteria for the project rubric. Please make sure to re-review the rubric for detailed project requirements prior to submission.
Start by linking your app.js.
Build out your HTML and at least 4 content sections. The rest of your functionality relies on these sections.
Take a quick look at all the HTML elements in index.html. Note the values for their id, class, and data attributes.
Think about how you can create, say, an unordered list (i.e., bulleted list) in HTML from this structure, and where you be placing that list.
Think about how you’ll test whether a section is in the viewport.
What actions are you performing that will cause interactivity with the DOM?
Build the navigation menu.
Add functionality to distinguish the section in view.
How can we use classList methods to change the CSS being displayed? What about removing that CSS?
Add the functionality to scroll to sections
Add an active state to your navigation items when a section is in the viewport.
Detect the element location relative to the viewport using .getBoundingClientRect() built-in function.
Set CSS class active state when the element is in the viewport.

/** * * Manipulating the DOM exercise. * Exercise programmatically builds navigation, * scrolls to anchors from navigation, * and highlights section in viewport upon scrolling. * * Dependencies: None * * JS Version: ES2015/ES6 * * JS Standard: ESlint * */ /** * Comments should be present at the beginning of each procedure and class. * Great to have comments before crucial code sections within the procedure. */ /** * Define Global Variables * */ /** * End Global Variables * Start Helper Functions * */ /** * End Helper Functions * Begin Main Functions * */ // build the nav // Add class 'active' to section when near top of viewport // Scroll to anchor ID using scrollTO event /** * End Main Functions * Begin Events * */ // Build menu // Scroll to section on link click // Set sections as active

,

/* * * CSS written based on SMACSS architecture. * To learn more, visit: http://smacss.com/ * * For simplicity, no reset or normalize is added. * To learn more, visit: https://css-tricks.com/reboot-resets-reasoning/ * */ /* —- Base Rules —- */ body { background: rgb(136,203,171); background: linear-gradient(0deg, rgba(136,203,171,1) 0%, rgba(0,13,60,1) 100%); margin: 0; font-family: 'Merriweather', serif; color: #fff; } /* Typeography General*/ h1 { font-family: 'Fira Sans', sans-serif; font-size: 3em; margin: 2em 1rem; } @media only screen and (min-width: 35em){ h1 { font-size: 7em; margin: 2em 4rem 1em; } } h2 { border-bottom: 1px solid #cc1; font-family: 'Oxygen', Sans-Serif; font-size: 3em; color: #fff; } p { line-height: 1.6em; color: #eee; } /* —- Layout Rules —- */ main { margin: 10vh 1em 10vh; } .main-hero { min-height: 40vh; padding-top: 3em; } section { position: relative; min-height: 80vh; } /* —- Module Rules —- */ /* Navigation Styles*/ .navbar__menu ul { padding-left: 0; margin: 0; text-align: right; } .navbar__menu li { display: inline-block; } .navbar__menu .menu__link { display: block; padding: 1em; font-weight: bold; text-decoration: none; color: #000; } .navbar__menu .menu__link:hover { background: #333; color: #fff; transition: ease 0.3s all; } /* Header Styles */ .page__header { background: #fff; position: fixed; top: 0; width: 100%; z-index: 5; } /* Footer Styles */ .page__footer { background: #000; padding: 3em; color: #fff; } .page__footer p{ color: #fff; } /* —- Theme Rules —- */ /* Landing Container Styles */ .landing__container { padding: 1em; text-align: left; } @media only screen and (min-width: 35em){ .landing__container { max-width: 50em; padding: 4em; } } section:nth-of-type(even) .landing__container { margin-right: 0; margin-left: auto; text-align: right; } /* Background Circles */ /* Note that background circles are created with psuedo elements before and after */ /* Circles appear to be random do to use of :nth-of-type psuedo class */ section:nth-of-type(odd) .landing__container::before { content: ''; background: rgba(255, 255, 255, 0.187); position: absolute; z-index: -5; width: 20vh; height: 20vh; border-radius: 50%; opacity: 0; transition: ease 0.5s all; } section:nth-of-type(even) .landing__container::before { content: ''; background: rgb(255,255,255); background: linear-gradient(0deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.2) 100%); position: absolute; top: 3em; right: 3em; z-index: -5; width: 10vh; height: 10vh; border-radius: 50%; opacity: 0; transition: ease 0.5s all; } section:nth-of-type(3n) .landing__container::after { content: ''; background: rgb(255,255,255); background: linear-gradient(0deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.2) 100%); position: absolute; right: 0; bottom: 0; z-index: -5; width: 10vh; height: 10vh; border-radius: 50%; opacity: 0; transition: ease 0.5s all; } section:nth-of-type(3n + 1) .landing__container::after { content: ''; background: rgb(255,255,255); background: linear-gradient(0deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.2) 100%); position: absolute; right: 20vw; bottom: -5em; z-index: -5; width: 15vh; height: 15vh; border-radius: 50%; opacity: 0; transition: ease 0.5s all; } /* —- Theme State Rules —- */ /* Section Active Styles */ /* Note: your-active-class class is applied through javascript. You should update the class here and in the index.html to what you set in your javascript file. */ section.your-active-class { background: rgb(0, 0, 0); background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%); } section.your-active-class .landing__container::before { opacity: 1; animation: rotate 4s linear 0s infinite forwards; } section.your-active-class .landing__container::after { opacity: 1; animation: rotate 5s linear 0s infinite forwards reverse; } /* Section Active Styles Keyframe Animations */ @keyframes rotate { from { transform: rotate(0deg) translate(-1em) rotate(0deg); } to { transform: rotate(360deg) translate(-1em) rotate(-360deg); } }

,

    Landing Page

    Section 1

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi fermentum metus faucibus lectus pharetra dapibus. Suspendisse potenti. Aenean aliquam elementum mi, ac euismod augue. Donec eget lacinia ex. Phasellus imperdiet porta orci eget mollis. Sed convallis sollicitudin mauris ac tincidunt. Donec bibendum, nulla eget bibendum consectetur, sem nisi aliquam leo, ut pulvinar quam nunc eu augue. Pellentesque maximus imperdiet elit a pharetra. Duis lectus mi, aliquam in mi quis, aliquam porttitor lacus. Morbi a tincidunt felis. Sed leo nunc, pharetra et elementum non, faucibus vitae elit. Integer nec libero venenatis libero ultricies molestie semper in tellus. Sed congue et odio sed euismod.

    Aliquam a convallis justo. Vivamus venenatis, erat eget pulvinar gravida, ipsum lacus aliquet velit, vel luctus diam ipsum a diam. Cras eu tincidunt arcu, vitae rhoncus purus. Vestibulum fermentum consectetur porttitor. Suspendisse imperdiet porttitor tortor, eget elementum tortor mollis non.

    Section 2

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi fermentum metus faucibus lectus pharetra dapibus. Suspendisse potenti. Aenean aliquam elementum mi, ac euismod augue. Donec eget lacinia ex. Phasellus imperdiet porta orci eget mollis. Sed convallis sollicitudin mauris ac tincidunt. Donec bibendum, nulla eget bibendum consectetur, sem nisi aliquam leo, ut pulvinar quam nunc eu augue. Pellentesque maximus imperdiet elit a pharetra. Duis lectus mi, aliquam in mi quis, aliquam porttitor lacus. Morbi a tincidunt felis. Sed leo nunc, pharetra et elementum non, faucibus vitae elit. Integer nec libero venenatis libero ultricies molestie semper in tellus. Sed congue et odio sed euismod.

    Aliquam a convallis justo. Vivamus venenatis, erat eget pulvinar gravida, ipsum lacus aliquet velit, vel luctus diam ipsum a diam. Cras eu tincidunt arcu, vitae rhoncus purus. Vestibulum fermentum consectetur porttitor. Suspendisse imperdiet porttitor tortor, eget elementum tortor mollis non.

    Section 3

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi fermentum metus faucibus lectus pharetra dapibus. Suspendisse potenti. Aenean aliquam elementum mi, ac euismod augue. Donec eget lacinia ex. Phasellus imperdiet porta orci eget mollis. Sed convallis sollicitudin mauris ac tincidunt. Donec bibendum, nulla eget bibendum consectetur, sem nisi aliquam leo, ut pulvinar quam nunc eu augue. Pellentesque maximus imperdiet elit a pharetra. Duis lectus mi, aliquam in mi quis, aliquam porttitor lacus. Morbi a tincidunt felis. Sed leo nunc, pharetra et elementum non, faucibus vitae elit. Integer nec libero venenatis libero ultricies molestie semper in tellus. Sed congue et odio sed euismod.

    Aliquam a convallis justo. Vivamus venenatis, erat eget pulvinar gravida, ipsum lacus aliquet velit, vel luctus diam ipsum a diam. Cras eu tincidunt arcu, vitae rhoncus purus. Vestibulum fermentum consectetur porttitor. Suspendisse imperdiet porttitor tortor, eget elementum tortor mollis non.

    © Udacity

Related Tags

Academic APA Assignment Business Capstone College Conclusion Course Day Discussion Double Spaced Essay English Finance General Graduate History Information Justify Literature Management Market Masters Math Minimum MLA Nursing Organizational Outline Pages Paper Presentation Questions Questionnaire Reference Response Response School Subject Slides Sources Student Support Times New Roman Title Topics Word Write Writing