T
T
travinik2017-01-26 09:33:17
css
travinik, 2017-01-26 09:33:17

How can you position the divs like that?

e39bb776e60245189287c1ec389535b3.png
Can you tell me by what means it is possible to position the blocks in this way? And if possible, an example of at least one such diva. Thank you!

Answer the question

In order to leave comments, you need to log in

3 answer(s)
W
whoisthere, 2017-01-26
@travinik

Position: Absolute + Transform: Rotate(-(УГОЛПОВОРОТА)deg);

Пример на инлайн блоках

I
Ivan Babiy, 2017-01-26
@roblip

In my opinion, it's best not to overdo it. Why such red tape in web development? You can come up with something simpler, but no less cool

A
Anton Krivokhizhin, 2017-08-13
@antonkri97

function updateHeatmap(data) {
    return function(event) {
        var map = event.chart;
        if ( map.dataGenerated )
          return;
        if ( map.dataProvider.areas.length === 0 ) {
          setTimeout( updateHeatmap, 100 );
          return;
        }
        for ( var i = 0; i < map.dataProvider.areas.length; i++ ) {
          map.dataProvider.areas[ i ].value = Math.round( Math.random() * 10000 );
        }
        map.dataGenerated = true;
        map.validateNow();
    }
}


// "method": updateHeatmap(data)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question