Сообщение от eljakovarkadiy
|
при нажатии первой кнопки, она скрывается и через n-секунд на ее месте появляется другая,
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='https://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
</script>
</head>
<body>
<input onclick="style.display='none'" type="button" value="Испытать удачу" style="float:left;margin-left: 300px;height: 40px;width: 300px;" id='spin' />
<a href="dsfsdf.html"><button id="but1" style="display:none; float: right; margin-right: 300px;margin-top: -1px;height: 40px;width: 300px; -webkit-transition: all 1s ease-out 0.5s;
-moz-transition: all 1s ease-out 0.5s;
-o-transition: all 1s ease-out 0.5s;
transition: all 10s ease-out 0.5s;">Перейти далее</button>
</a>
<script type="text/javascript">
$( "#spin" ).click(function() {
$(this).hide();
setTimeout(function(){
$( "#but1" ).show( "slow", function() {
});
},2000);
});
</script>
</body>
</html>