「クレジット」という単語を作成しようとしています。:hover
編集すると、展開してChrome拡張機能でクレジットが表示されます。機能していません。
クレジット用のCSSは次のとおりです。
.credits{
float: right;
text-align: right;
cursor: default;
}
.hiddencredits{
display: none;
width: 1px;
height: 1px;
-webkit-transition: width 2s, height 2s;
text-align: center;
cursor: default;
}
.credits:hover .hiddencredits{
display: block;
width: 100px;
height: 100px;
background: black;
color: white;
}
テキストにカーソルを合わせると、クレジットが開きますが、トランジションはありません。