JavaScript - Create a loading bar [closed] - javascript

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I'm trying to create a loading bar, that I'll use when I'll open links or images. I mean, while the page/image isn't loaded yet, a would like to show a loading bar like the one I shown you.
I know how to create the bar in fact, but I don't know how to get the status of the load of the page/image. I imagine that I need to use JavaScript or jQuery, but if you know any way to do this in PHP it would help me.
Thanks!

Loading bar like the above will only work if you are running a php script using ajax. You should understand that php is a server side language, so only when the the server runs the script and shows the output to browser it has already done 100%.
However you can use various libraries https://github.com/verlok/lazyload, http://github.hubspot.com/pace/docs/welcome/
Play with the above two libraries. Ideally pace would be used to show page and lazy load for images

Related

"progressive" web site loading [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I'm looking for a way to generate a kind of a "progressive" page loading effect that you can see when reloading for example Linkedin :
It loads instantly, and is replaced by real content when it loads.
I've seen it already on a lot of web sites, so I'm guessing there's a name for it and a right approach / js framework that does that :)
The problem in here it's the transition between your "Not loaded content" and your "real content".
For your "Not loaded content" you can simply put some empty divs, thumnails, or even just images. Even more easy but risk, an entire image of your website "not loaded at all".
But then you have to find the way to disapear that stuff and fade in your "real content".
You can practice, with the jquery animate functions "fadein" and "fadeout" or use some libraries like Animate.cc, but the difficult thing is put the 2 contents in the same place (index-z css property).
Instead of all this search for a library that do this.

HTML Generated image link? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I'm a web designer and i'm currently designing a website that includes images. I was wonder if anyone can tell me what it is called or if you can guide me the right way so i can do some research on my own and learn it.
Basically what i need to know is how can you lets say if the user click on the image it will bring them to another html with that image plus that image information
A current example... wallhaven.cc if you go there and if you click a wall paper.. every wallpaper has a specific link. is that generated or does that mean that literally EVERY image on that website has a web page of its own?
Yes it is possible to do it both ways you can use what is called dynamically generated web pages or you can create each page manually.
So if you were to go with the dynamically generated web pages you would probably want to consider looking around a JavaScript Template Engine. I currently am using this one while I build my own. http://idangero.us/template7/. That is the best JavaScript Template Engine you can get. Plus it is free and Open-Source. But if you go with creating each page manually you will have a lot of work on you hand! So personally I would choose using the JavaScript Template Engine!
Have a great day.
Joseph Shenton
http://timedevs.net/
There is one page for image details, the number at the end of the link is the image id, which tells the server which data to output.

Parsing html table from different domain [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
i'm making an iOS app for showing schedule for my college.
I'm kinda new in javascript, i thought it's simple until now. I know this task may be simple and trivial, but listen:
My application generates link with parameters and then creates a dynamic page with an iframe and opens link within it (src of an iframe sets to generated link), link leads to a page on a different domain, it has a HTML table with needed data in it's cells, each cell has it's own attribute, so i thought i could simply find each needed cell by it using DOM, but accessing iframe's DOM doesn't work. I can change absolutely nothing on server side - even college technicians do not know how it works and of course they'll not touch anything until it breakes.
So the question is: how can i get the text from the cells of that table by knowing their attributes and store it as a variable in javascript?
Almost forgot, example of a page itself:
http://ikis.tsogu.ru/shedule/show_shedule.php?action=group&union=0&sid=96&gr=111&year=2015&vr=0
Basically, you cant. Due to same-origin policy. Check out this and this similar questions.

JavaScript SlideShow that will work in Ebay listings? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I am after jscript SlideShow, not based on JQuery etc. as I am pretty sure you can't reference external
javascript library in Ebay listings?
Ideally not just switching images, but one for layers. That will slide a bunch of divs or html data, where I can put images and text etc. Also having it work in IE6 and failing gracefully for anyone with js off would be a plus.
This one here is what I am after, does not use any library
but unfortunately still does not work in Ebay.Tiny SlideShow
Thanks..
If javascript is allowed on the page, you could include the slide-show images on the page, something like this:
<img src="slide1" onclick="showslide(2)">
<img src="slide2" onclick="showslide(3)">
<img src="slide3" onclick="showslide(1)">
Then include a simple script to change the picture, for example:
<script>
function showslide(number) {
document.getElementById("slide1").style.display="none"
document.getElementById("slide2").style.display="none"
document.getElementById("slide3").style.display="none"
document.getElementById("slide"+number).style.display="block"
}
</script>
JavaScript is not allowed in eBay item description. But you can use an official eBay application such as Flash Gallery. It will create a Flash gallery and insert it into your listing. You can also use other Flash galleries that do not require JavaScript.

What slideshow script is 'tumblr.com' using? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
The url is like below.
http://www.tumblr.com/
On the main page, you can see 3 images keep rotating, which I first thought was a swf, actually is not. They are the images each in <li> tag.
Is there any script out there that can do this? If then, what is it?
Not sure about the Tumblr but you can use jQuery Cycle plugin to create a lot of effects if you want.
In the source they import the file prototype_and_effects.js so they are most likely using the Prototype Framework (a popular alternative to jQuery) and script.aculo.us for the rotating banner effect, which is also included in that file.
Check out their effects demo page for examples and documentation.

Categories

Resources