Completion Percentage [closed]

-2

Can you tell me if it's possible to do this image in OptimizeMember (Member Area Plugin)? Or do you know any plugins for WordPress that do? Thankful

link

    
asked by anonymous 20.08.2015 / 19:22

1 answer

2

You can do this with jquery, I created a basic example.

Javascript:

$(function(){
    var total = $('input[type=checkbox]').length;

    $('input[type=checkbox]').on('change', function(){
        var selecionados = $('input[type=checkbox]:checked').length;

        var porcentagem = (selecionados/total) * 100;

        $('.bar-loaded').animate({
            width: porcentagem+'%'
        });

        $('#box p').html(porcentagem+'%');
    });
});

HTML:

<div id="box">
    <p>0%</p>
    <div class="bar">
        <div class="bar-loaded"></div>
    </div>

    <ul>
        <li>
            <label><input type="checkbox" /> Item 1</label>
        </li>
        <li>
            <label><input type="checkbox" /> Item 2</label>
        </li>
        <li>
            <label><input type="checkbox" /> Item 3</label>
        </li>
        <li>
            <label><input type="checkbox" /> Item 4</label>
        </li>
    </ul>
</div>

The working example here

    
20.08.2015 / 19:46