Сообщение от tenebrosus
|
картинка должна мигнуть 2 раза с интервалом в 1 секунду а на третий остаться. Как сделать?
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<!--
<script src='http://code.jquery.com/jquery-latest.js'></script>
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
form img {
display: none;
}
</style>
<script type='text/javascript'>
function send(){
var time=500;
setTimeout(function (){
var o=document.getElementById('test');
o.style.display='inline';
setTimeout(function (){
o.style.display='none';
setTimeout(function (){
o.style.display='inline';
},time);
},time);
},time);
};
</script>
</head>
<body>
<form>
<div>
<input type='text' />
<img id='test' src='http://javascript.ru/forum/images/smilies/nono.gif' />
</div>
<input type='button' value='Send' onclick='send();' />
</form>
</body>
</html>