入力のフォーカスに合わせてアニメーションを止めたいと思います。フォーカスでCSS/jqueryアニメーションを停止できません。
私がホバーしているときは、いつも良い、問題はありません。しかし、私は入力を集中するときにスパンを止めたい。問題はここにあります。私のコードはhereです。
実際には私はこのことをscssではなくしたいと思っています。 here
とHTML:
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
<section id="text">
<p><span> İSİM</span><input name="name" type="text" placeholder="İsminiz" /></p>
<p><span> KONU </span><input name="subject" type="text" placeholder="Konu"/></p>
<p><span> MAİL </span><input name="mail" type="email" placeholder="Mailiniz"/></p>
<p><span> MESAJ </span><textarea name="message" type="text" placeholder="Mesajınız"></textarea>
</section>
CSS:
.aktif1{width:100px;transition:1s;}
.aktif2{width:450px;transition:1s;}
body{
background:#f7f7f7;
}
p{
position: relative;
width:450px;
}
section#text{
position:relative;
margin-left:500px;
margin-top:150px;
}
p input{
outline:none;
width:330px;
height:40px;
padding-left:120px;
}
p textarea{
outline:none;
max-width:330px;
max-height:40px;
width:330px;
height:40px;
padding-left:120px;
}
p span{
width:455px;
height:45px;
background:#333;
position: absolute;
color:white;
text-align:center;
line-height:50px;
font-family: 'Open Sans', sans-serif;
font-weight:bold;
transition:1s;
}
のjQuery:
$(function() {
fonk1();
$('section#text input').focus(function(){
fonk1().stop();
});
fonk2();
$('section#text input').blur(function(){
fonk2();
});
});
var fonk1 = function(){
$('section#text p').mouseenter(function(){
$('span',this).animate(1000,function(){
$(this).css({'width':'100'});
});
});
}
var fonk2 = function(){
$('section#text p').mouseleave(function(){
$('span',this).animate(1000,function(){
$(this).css({'width':'450'});
});
});
}
最初のcodepenで同じものを使用したい場合は、**コンパイルしたCSS **を表示するだけです。CSSウィンドウで下矢印をクリックし、コンパイル済みのCSSの表示を選択します。その後、あなたはそれを平らなCSSと見なすことができます – DaniP
ありがとう私はこの機能を知らなかった。しかし、私は自分のコードでどこでエラーが起きているのだろうと思っています。 –
「ユーザーが入力をフォーカスするとすぐにアニメーションを停止しますか?」あなたは 'stop span'/'stop hover'でそれを意味しましたか? – flob