ドラッグ アンド ドロップ ゲームを年少の子供により適したものに変更するように言われました。
これを念頭に置いて、ドラッグ可能なものをクリックすることにしました。これにより、それらが目的の位置 (".drop-box.spellword") にアニメーション化されます。
このようなクリックイベントをどのように作成しますか..
$(".drag").click(function() {
$(".drag").animate({"left": "+=-200px"}, "slow");
});
* "left: 200px" ではなく".drop-box.spellword" *という領域にアニメーション化します。
「.drag」のスタイルは次のとおりです...
.squares .box-style {
background: #176BC9;
color: white;
font-family: arial;
font-size: 35pt;
text-align: center;
width: 60px;
height: 60px;
border: 1pt solid white;
cursor: move;
opacity: 1;
line-height: 56px;
}
.drag {
display:block;
height:61px;
line-height:25px;
width:61px;
text-align: center;
background:#ddd;
float:left;
-webkit-transition: -webkit-transform 0.1s ease-in;
}
ありがとう!