programmatic number of circles

This commit is contained in:
Alexander Yakovlev 2017-06-15 18:43:11 +07:00
parent 6ea1324e1f
commit abc8a124f6
2 changed files with 22 additions and 32 deletions

View file

@ -1,3 +1,5 @@
$circles: 4;
* {
margin: 0;
padding: 0;
@ -81,7 +83,6 @@ body {
position: absolute;
width: 15%;
z-index: 0;
-webkit-animation: humanreverse 100s linear infinite;
animation: humanreverse 100s linear infinite;
box-shadow: none !important;
}
@ -98,7 +99,6 @@ body {
text-align: left;
.avatars {
display: block;
-webkit-animation: rotat 100s linear infinite;
animation: rotat 100s linear infinite;
/*left:0;
top:0;*/
@ -122,37 +122,28 @@ body {
border: 5px solid white;
}
.circle-1 {
width: 80%;
margin: 3% auto;
position: relative;
$i: 0;
@while $i < $circles {
.circle-$i {
$width: 80% - $i*5%;
width: $width;
margin: ((100% - $width) / 2) auto;
position: relative;
}
$i: $i + 1;
}
.circle-$circles {
animation-play-state: paused;
}
.circles {
border: 1px dashed;
border-radius: 50%;
}
.circle-2 {
width: 76%;
margin: 13% auto;
}
.circle-3 {
width: 70%;
margin: 15% auto;
}
.circle-4 {
width: 60%;
margin: 20% auto;
}
.all .avatars:hover {
-webkit-animation-play-state: paused;
animation-play-state: paused;
.humans {
-webkit-animation-play-state: paused;
animation-play-state: paused;
}
}

View file

@ -122,18 +122,17 @@ function imbb_usergalaxy() {
}
}
?>
<div class="circles circle-4">
<?php if (isset($posts[0])) {
foreach ($posts[0] as $post) {
echo '<img src="'.get_post_meta( $post->ID, 'imbb_image', TRUE ).'">';
$i++;
}
}
?>
</div>
</div>
</div>
</div>
<div class="circles circle-4">
<?php if (isset($posts[0])) {
foreach ($posts[0] as $post) {
echo '<img src="'.get_post_meta( $post->ID, 'imbb_image', TRUE ).'">';
$i++;
}
} ?>
</div>
</div>
</div>
<?php