Questions tagged [pace]

Progress indicator for your page load and ajax navigation.

Pace is a library that automatically monitors your ajax requests, event loop lag, document ready state, and elements on your page.

It adds a progress bar whenever it determines that the page is loading.

29 questions
0
votes
1 answer

pace-rails not showing for post requests

I have written a custom ajax function which uses POST and I need to show the pace progress bar until the ajax stops and returns. It is working fine for GET request because there is no config needed. I need to know how to set a method to show the…
Amal
  • 212
  • 2
  • 9
0
votes
0 answers

How can I remove the pace loading page from the website HTML page?

How can I remove the pace loading page from the website HTML page? css pace file: .pace { -webkit-pointer-events: none; pointer-events: none; -webkit-user-select: none; -moz-user-select: none; user-select: none; -webkit-perspective:…
Tarek AS
  • 187
  • 13
0
votes
1 answer

How to show content once pace progress bar is complete?

I am attempting to have the content inside 'wrapper' only fade in once the pace progress bar finishes loading Does anyone have any suggestions? Here is pen https://codepen.io/anon/pen/VNmBWQ JS Pace.on("done", function(){ …
user10953084
0
votes
1 answer

why Acf & Pacf has different lags range

I'm working on time series analysis with ARIMA, and I plotted Acf and Pacf to specify AR , and MA values (p, q), however, when I plot them, the Pacf shows large lags like 10000, 40000, and 70000 even though I specify the lag.max= 20. While in Acf…
Reta
  • 363
  • 3
  • 4
  • 15
0
votes
1 answer

Pace function parameter

I've created my function that will fetch for my API to change the user's pace. In my changePace function, i've established my parameter pace, and that parameter will vary depending on which pace is selected by the user. I have 4 paces, Steady,…
0
votes
0 answers

How to ignore pace in Angularjs $http request

Im using AngularJS v1.5.8 and Pace.ignore() is not working on $http.get and $http.post mathods. Can anyone help please?
NIRAV PAREKH
  • 137
  • 1
  • 2
  • 11
0
votes
1 answer

start pace.js right after click button for call ajax and $http

I have used pace.js as my progress bar but it is shown only when page loads or reloads and the times when it wants to load data received from ajax or $http calls, not before that. what should I do to start pace right after click button?
user5381028
0
votes
1 answer

Pace page load does not show loading animation

I have included the page page loader script into my project with cakephp.I can see that it is loading as in body tag I can see the 'pace-running' and 'pace-done' class names. As soon as I add this $(function() { Pace.on("done", function(){ …
user1555112
  • 1,897
  • 6
  • 24
  • 43
0
votes
1 answer

Angular2 with Pace-Progress library, Error: Buffer is not defined

The Pace library (Pace-Progress is the name of it on NPM because Pace was already taken) is throwing this error when imported. I am using Angular2 and Webpack. The line of code throwing the error is exports.isBuffer = Buffer.isBuffer; I have a…
Josh
  • 1,648
  • 8
  • 27
  • 58
0
votes
3 answers

Can I use pace instead of data-table's processing?

I'd like to use PACE for Datatable's ajax requests. So , I disabled the datatable's processing as processing : false. And then what do I need to work PACE's processing bar for showing every Datatable's ajax requests ?
Cataclysm
  • 7,592
  • 21
  • 74
  • 123
0
votes
1 answer

Using pace.js in the document.ready function part

I have this in the head part of the page to load the pace.js file with the loading bar animation.
TalG
  • 677
  • 1
  • 9
  • 26
0
votes
1 answer

How to add a "please wait" text message into pace loader

I'm using Pace loader (http://github.hubspot.com/pace/docs/welcome/) and I use the "flash" preload theme. Now, I put the small circular preloader in the left side of the screen .I have added also a div with a class called "cover". This div cover all…
Giorgio
  • 11
  • 1
  • 5
-1
votes
1 answer

Calculate running pace from distance and time in PHP

I'm not a programator, I'm not a student. I just play with HTML, CSS and PHP for my own pleasure. For now, I try to make a webpage for my running. I would like to calculate my PACE (mm:ss/KM) from my DISTANCE (KM) and running time (mm:ss) or better…
Martin
  • 65
  • 1
  • 8
-2
votes
2 answers

if data-progress="50" change data-progress-text

I have a loader on my page and its html looks like this:
I want to write a JS that can change the data-progress-text…
Federico
  • 1,392
  • 1
  • 17
  • 40
1
2