exciting-aftermath/Portfolio.WebUI.Server/Components/Component/Pokemon Components/PokemonBackground.razor

9 lines
286 B
Plaintext

<div class="pokemon-background">
@foreach (var image in _pokemonImages)
{
<img src="@image.Url"
class="pokemon-bg-img"
style="left:@image.Left%; top:@image.Top%; width:@image.Size}px; transform:rotate(@(image.Rotation)deg);" />
}
</div>