私はUniのWebデザインクラスのこのWebページプロジェクトを手に入れました。システムでは、惑星は色のついたシンプルな円であり、Webkitを使って回転させます。私はまた、ホバリングしたときに回転を止めたい。ここで私はミニマリストソーラーシステムを備えたWebページを作成しました。私はそれらのいずれかを動かすと回転を止めてほしい
は、地球のためのコードです:
#earth {
position: absolute;
top: 0;
left: 50%;
height: 50px;
width: 50px;
margin-left: -25px;
margin-top: -25px;
}
#earth-orbit {
position: absolute;
top: 50%;
left: 50%;
width: 800px;
height: 800px;
margin-top: -400px;
margin-left: -400px;
border-width: 2px;
border-style: dotted;
border-color: white;
border-radius: 50%;
-webkit-animation: spin-right 14s linear infinite;
-moz-animation: spin-right 14s linear infinite;
-ms-animation: spin-right 14s linear infinite;
-o-animation: spin-right 14s linear infinite;
animation: spin-right 14s linear infinite;
}
<div id="earth-orbit">
<img id="earth" src="">
</div>
は、どのように私は、地球のためにホバークラスを作ることができますか?
素敵なあなたはそれと知らなかった添付します。詳細はこちらhttps://developer.mozilla.org/en/docs/Web/CSS/animation-play-state – Aaron
答えをいただきありがとうございます。私のコードでズームレベルを設定する方法もありますか? –
変換を行って縮尺を変更することができます。 '#earth-orbit:ホバー{ -webkit-transform:scale(1.25);/* SafariとChrome */ -moz-transform:scale(1.25);/* Firefox */ -ms-transform:scale(1.25);/* IE 9 */ -o-transform:scale(1.25);/* Opera */ 変換:縮尺(1.25); } ' – KieranDotCo