jQuery: v1
| Код |
|---|
<!DO CTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<ht ml xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Blinking Text</title>
<sc ript type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js"></sc ript>
<sc ript type="text/javascript">
$(function(){
$("#blinkingText").hide();
setTimeout(function(){$("#blinkingText").show();setInterval(function(){$("#blinkingText").toggle();},500)},3000);
});
</sc ript>
</head>
<body>
<p id="blinkingText">Blinking Text</p>
<p style="position: absolute; top: 50px;"><a href="#">Hide Blinking Text (set display: none)</a></p>
</body>
</html>
|
Не жмись, кликай "Мне нравится" на сообщении :)