mirror of
https://github.com/yude-jp/yude.jp
synced 2024-12-22 12:10:11 +09:00
Add alt to images
This commit is contained in:
parent
a8186fb801
commit
24cf758cad
@ -10,6 +10,7 @@ const happybusy = (props) => {
|
||||
src="/images/brstrip.gif"
|
||||
width={150}
|
||||
height={41}
|
||||
alt="EFF Blue Ribbon Campaign"
|
||||
/>
|
||||
</a>
|
||||
</Link>
|
||||
|
@ -10,6 +10,7 @@ const HappyBusy = (props) => {
|
||||
src="/images/busy_banner.png"
|
||||
width={200}
|
||||
height={42}
|
||||
alt="時間のないサイト運営者リング"
|
||||
/>
|
||||
</a>
|
||||
</Link>
|
||||
|
@ -54,7 +54,7 @@ export default function Minecraft(props) {
|
||||
url.push('https://mc-heads.net/avatar/' + data.players.list[i])
|
||||
}
|
||||
for (var i in url){
|
||||
list.push(<Image src={url[i]} key={i} className="inline" height="50" width="50" />)
|
||||
list.push(<Image src={url[i]} key={i} className="inline" height="50" width="50" alt={i}/>)
|
||||
}
|
||||
return <div>{list}</div>
|
||||
}
|
||||
|
@ -53,8 +53,7 @@ export default function About(props) {
|
||||
<div className="w-full">
|
||||
<Image
|
||||
src = "/images/dynmap.png"
|
||||
alt = "Dynmap Header"
|
||||
unoptimized = {true}
|
||||
alt = "Minecraft brief world map generated by Dynmap"
|
||||
width = {1354}
|
||||
height = {619}
|
||||
/>
|
||||
|
Loading…
Reference in New Issue
Block a user