Formatting
This commit is contained in:
parent
24703953db
commit
9a60a69f22
1 changed files with 15 additions and 2 deletions
|
@ -8,6 +8,7 @@ $hitRepo = $em->getRepository(\EmotionHero\Models\Hit::class);
|
|||
/* @var $currentHit \EmotionHero\Models\Hit */
|
||||
$currentHit = $hitRepo->findOneBy(['hasImage'=>true], ['id'=>'DESC']);
|
||||
|
||||
|
||||
$printEmoBlocks = function($emotion, $feature, $steps = 6) use($em) {
|
||||
foreach(range(0, 100, 100/($steps-1)) as $i) {
|
||||
/* @var $hitRepo EmotionHero\Models\HitRepository */
|
||||
|
@ -72,6 +73,7 @@ position:relative;
|
|||
|
||||
.emo{
|
||||
text-align:center;
|
||||
float:left;
|
||||
|
||||
}
|
||||
.brows{
|
||||
|
@ -82,14 +84,26 @@ position:relative;
|
|||
}
|
||||
|
||||
.current{
|
||||
width:200px;
|
||||
/*width:200px;*/
|
||||
margin:0 auto;
|
||||
text-align:center;
|
||||
}
|
||||
.current img{
|
||||
width:200px;
|
||||
}
|
||||
dd, dt{
|
||||
float:left;width:80px;
|
||||
}
|
||||
img.curImg{
|
||||
position:absolute;
|
||||
left:0;
|
||||
mix-blend-mode:difference;
|
||||
}
|
||||
|
||||
svg{
|
||||
width:400px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
</style>
|
||||
<body>
|
||||
|
@ -164,7 +178,6 @@ echo <<< EOSVG
|
|||
</svg>
|
||||
EOSVG;
|
||||
|
||||
print_r($currentHit->getPoints()->getAsArray());
|
||||
?>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue