Skip to content

Latest commit

 

History

History
110 lines (80 loc) · 2.85 KB

README.md

File metadata and controls

110 lines (80 loc) · 2.85 KB

Frontend Mentor - Interactive pricing component solution

This is a solution to the Interactive pricing component challenge on Frontend Mentor.

Table of contents

Overview

The challenge

Users should be able to:

  • View the optimal layout for the app depending on their device's screen size
  • Use the slider and toggle to see prices for different page view numbers

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • Desktop-first workflow

What I learned

<div class="componente__valores">
    <span class="componente__valores-pagina"><span id="views">100K </span>VISUALIZAÇÕES DE PÁGINA</span>
    <span><span class="componente__valores-preco"><span>R$ </span><span id="preco">16.00</span></span><span class="componente__valores-mes" id="duracao">/mês</span></span>
</div>
<input type="range" id="slider" min="1" max="5" value="3" step="1" class="componente__slider">
.componente__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 35px;
    height: 35px;
    background-image: url('../img/icon-slider.svg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-radius: 50%;
    background-color:hsl(174, 86%, 45%);
    cursor: pointer;
}

.componente__plano-checkbox-switch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    background-color: white;
    top: 2px;
    left: 3px;
    transition: all 0.5s;
}
.componente__plano-checkbox input:checked + .componente__plano-checkbox-switch {
    transform: translateX(18px);
}
switcher.onclick = function(){

    if(checkbox.checked == true){

        let intPreco = parseInt(preco.textContent);
        preco.textContent = `${(intPreco * 0.75) * 12}`;

        duracao.textContent = `/ano`;
    }
    else{
        atualizaPreco();
        duracao.textContent = `/mês`;
    }
}

Continued development

My goal now is to continue to develop my skills in this three languages, with the main focus being JavaScript.

Useful resources

Author