Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/kotlin/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery Js帮助在加载程序完成时链接另一个页面_Jquery_Progress Bar_Pace.js - Fatal编程技术网

Jquery Js帮助在加载程序完成时链接另一个页面

Jquery Js帮助在加载程序完成时链接另一个页面,jquery,progress-bar,pace.js,Jquery,Progress Bar,Pace.js,我有索引,但我想加载另一个页面,在pace.js加载程序完成后,我修改了时间间隔的默认属性,但我想在这个加载程序完成后显示另一个页面,我认为需要一些pace脚本代码。请帮忙 这是我的html <!doctype html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Casa del nino<

我有索引,但我想加载另一个页面,在pace.js加载程序完成后,我修改了时间间隔的默认属性,但我想在这个加载程序完成后显示另一个页面,我认为需要一些pace脚本代码。请帮忙

这是我的html

<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Casa del nino</title>

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>


 <script src="pace/pace.js"></script>
  <link href="pace/themes/green/pace-theme-loading-bar.css" rel="stylesheet" />

<link rel="stylesheet" href="casanino2.css">
</head>

<body class="image"  >

<script>

    Pace.start()

    </script>

</body>
</html>
我补充说

$(文档).ready(函数(){ setTimeout(函数(){ location.href=“prueba.html”; }, 3400); });
  .image{


         background: url('imagenes/20130819180556.jpg') no-repeat center center fixed;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      background-size: cover;
      -o-background-size: cover;
    }