Creating Presentation Without Showing Load Bars?

Jun 30, 2010

Any way to create a presentation on a website WITHOUT showing load bars? Background info: it is about photography website where someone after seeing full size picture could click to view it in a room setting. Right now my developer created a presentation where full size picture zooms out then there is a load bar (hideous) and then the presentation starts. So it looks like it is 2 different parts and I would like to make it into one smooth presentation. Btw: would like if possible avoid flash animation due to recent developments on Apple's side.

View 1 Replies


ADVERTISEMENT

Showing A Powerpoint Presentation In The Browser Window

Jul 23, 2005

I want to open a simple powerpoint sheet in the browser window. What is the best way to do that?

I have searched in this group and saw different people telling that thepluginn for powerpoint must be placed on the page as well. Can someone help me out?

View 1 Replies View Related

No Scroll Bars Showing Up In Any Browser

Dec 2, 2009

I made this webpage. It runs with a simple javascript function that changes the content in the window when you click on the menu buttons. the only problem is there are no vertical scroll bars when viewed in any browser. There seems to be a place for them but no actual scroll bar. I tried modifying the color and such with cs but it didn't change anything.

The site: [url]

Here is all the code starting with the html, then the css, and the two javascript pages

[code]

View 1 Replies View Related

Window.open Scroll Bars Not Showing In IE8

Mar 1, 2011

using window.open to open a popup, the "scrollbars=1" thing is not working in IE8 for some reason (the window opens, its just that the scroll bar that isn't showing).

View 1 Replies View Related

Switch Statements And Variables - Creating Bars?

Apr 18, 2011

I'm having some trouble with the Switch Statements. My program runs without it so I know that the problem is here. I believe the logic is sound so it may be due to incorrect syntax. The purpose of this function is to create bars, and the length of the bars is determined by the value of the "percent" variable (which is working fine) in the For loop after the Switch statements. The variable, "partyType" contains any of the text strings, such as "I", "D", etc.

function createBar(partyType,percent){
var barText;
switch(partyType){
case "D":
barText="<td class='dem'></td>";
break;
case "R":
barText="<td class='rep'></td>";
break;
case "I":
barText="<td class='ind'></td>";
break;
case "G":
barText="<td class='green'></td>";
break;
case "L":
barText="<td class='lib'></td>";
break;
default: document.write("hi");
}
for(var i=1; i<percent; i++){
document.write(barText);
}}}

View 1 Replies View Related

Setting The Size Of The Page - Disabling Scrollbars - Menu Bars - Address Bars

Sep 10, 2009

How can I fixed the size of the page to desired width and length and also make that page fixed to that size so that it cannot resized.

And also I want to disable all bars(scrollbars, menubars, address bars etc) for the page.

I am using these codes for my projects and these are for commercial purpose. I am also asking for to use these codes for my projects.

View 1 Replies View Related

Help With Status Bar - Still Showing Load In Progress Even After Page Load

Feb 20, 2006

I'm having an issue with the status bar in Mozilla and Netscape showing that
it is still waiting on the page to load even after it is finished. This
problem does NOT occur with IE.

In summary, I am using a onLoad event in the BODY tag to communicate back to
another server each time a page finishes loading. I do this by using a "new
Image()" and setting the .src property to the server. The .src includes a
value in the querystring so I know what request it was that finished
loading.

The challenge here is that the status bar still shows "Transferring data
from www.mysite.com..." despite the image being loaded. It never clears and
leaves the user with the impression that there was a problem loading the
page. My web server logs at the mysite.com show that the browser does
indeed make a request for the image and I get the querystring just fine and
it returns a status of 200 so the image is being found and served ok.

I've tried everything I can think of to solve this and really could use your
help please. Bottom line is that if you use the "new Image" statment from
within the OnLoad event of the Body tag, Netscape and Mozilla never seem to
update the status bar to show "Done" despite it succesfully loading the
image.

Here is a simply snippet you can use to easily reproduce this issue:

View 3 Replies View Related

Not Loading - Get The Loading Scroller Bars But They Don't Fully Load

Sep 14, 2009

It's the Coda Slider script on here: [url]

If you scroll to the bottom, and click: "See what our users have to say" and you can see the sliders.

It's working in all browsers but Safari, the script just doesn't seem to be loading, I get the loading scroller bars but they don't fully load. What is the best way to debug JS - is that the right term?

View 3 Replies View Related

Add A Start Button To A Presentation?

Jan 2, 2011

I have a working code already. It already has a play and pause button, but I do not have a working start button (it has to play it from the very start). Here is the code:

<html>
<head>
<script type="text/javascript">
var interval = 500;
var random_display = 0;
var number = 0;
image = new Array();
image[number++] = new imageItem("1.jpg");
[Code]...

View 1 Replies View Related

Automatically Showing A Pup On Page Load

Aug 24, 2011

What i want is, to show a pop up or a simple div or a modal or any dialogue box to to load on my home page to show welcome message, whats new etc stuff, which will be displayed only once in a day to every visitor of my site,(at the first visit of the day only ) But i want to load this modal after a sec when all the other elements of the pages have been finished loading.

View 1 Replies View Related

JQuery :: Load Image In Background Before Showing?

Mar 1, 2011

I was wondering if anyone knew how to load a image in the background and have the current image show until the new image has been downloaded and then swap out the image.

I currently just have the replace without the buffering. Because of the download time of the new image there is a short time where the image space is blank.

View 7 Replies View Related

Prevent Easyslider From Showing All Slides On Load?

Apr 12, 2010

I have created the following page [URL]

When loading in ie6 and ie7 the content slider exposes all the slides until fully loaded, is it possible to hide these slides while loading?

View 1 Replies View Related

Hidden Divs Are Showing On Page Load?

Jun 19, 2011

when the page is loading all the hidden divs are coming up first and then it gets hidden.

The problem is I can't use display:block in css file..Is there any other way?

View 6 Replies View Related

Create A Marketing Presentation Using An Offline Website?

May 23, 2009

I am trying to create a marketing presentation using an offline website. I want to use an image scroller on the website. The ones that I like require java script. How can I get the java script to work offline? All of my files are in the same directory on my desktop. This presentation needs to be able to be installed on any desktop.

View 3 Replies View Related

Nested Lists Showing 'open' On Page Load

Apr 18, 2007

I am building a site where i am using some nested lists which I want to show when clicking ther parent li and then disapear when clicking it again.

the problem I am having is when the page initially loads or is refreshed it shows all the nested lists 'opened' Code:

View 4 Replies View Related

JQuery :: Creating Objects On The Page To Load?

May 10, 2010

if I am loading content into a div using the get feature of jquery, and that content has some clickable objects in it will jquery recognize those as well? What I am doing is building a site that tracks bugs on our software. The site pulls the bugs from a mysql db and displays in a table format. There's an edit link which passes the record id number of that bug (via ajax) to a php file, where a form is filled in with the bug data and passed back, a hidden div is then shown with the form in it. Part of the code I pass back has a submit button and a close button (css styled anchors) and I'm using the same process on them as I am on the edit link but not getting any results. My script looks like this:

<script src="js/jquery.js"></script>
<script language="javascript">
$(document).ready(function(){
//hide edit form

[Code].....

how it works. Does it sneak peek the page after it loads and get all the objects into some sort of array? I'm thinking it is doing that and because I am adding other object through AJAX it is not seeing those, since the page is not being reloaded.

View 1 Replies View Related

Double Drop Down Forms - Created Country.html For Each Country With Some Presentation

Sep 9, 2011

I want do create a form ans a javascript function that does something like this:

But on submit to go to a link somethink like this:

I have created country.html for each country with some presentation, all in the main directory.

Then i have a directory for each country where there is a country_province.html for each province.

In conclusion after i select the 2 options from the form ,when i click submit to take me to: href="../country/country_province.html".

View 14 Replies View Related

Way To Lock Down The Menu Bars?

Sep 28, 2010

Is there any way to lock down the menu bars? I currently have a form that was created in Adobe Professional. I have hidden the menu bars on initial view of this form, in an effort to force the sales associates to use buttons that I created that will show them all fields that are required. This worked for a while, but now the sales associates have found out how to unhide the menu bars and are again submitting incomplete forms. I would like to have something in place, that if they do unhide the menu bars, there are certain commands that they cannot use (i.e. Attach to E-mail). Is there any way to put script on this form that will gray out certain commands on the menu bars?

View 1 Replies View Related

Detecting Scroll-bars On DIV

Jul 22, 2004

I having a wrapper DIV (certain width say 400px) and i have some child DIVS which i want to add to it. And i want it to have a maximum height of 600px say.

I DONT want the wrapper DIV to have vertical scroll bars so i would like to add as many child DIVS (which contain text of indiscriminant length) until i can somehow detect that the wrapper has overflowed (ie the scrollbars have been implemented !) if it has then remove the last one and dynmically create a new DIV, and continue the cyclw until exhausted of child DIVS. Code:

View 1 Replies View Related

Datagrid That Uses Scroll Bars ?

Feb 19, 2010

I am looking for a Javascript Datagrid that will populate based on database driven data, but also allows the data in the list to scroll sepereately from the Header. This is so I can allow users to sort data without making another database call on each sort.

For instance, I have used this Javascript and it looks and works great, except the header scrolls with the data....

[url]

That works great with dynamic database data....but the header dissapears when using a scroll bar.

I am looking for something that works like this, but is not ajax and does not query the database with each sort. [url]

See how the data scrolls, but the header stays put? The pagination onthat example is not needed and in fact I would rather it didn't have that capability.

I want that functionality, but with Javascript.

View 1 Replies View Related

No Tool Bars On Current Window

Aug 16, 2006

I can move and resize the current window.

I need a window that opens up with no Toolbars. I know how to achieve
this from another window via a link. But is there a method to reload
the current window with no tool bars.

View 1 Replies View Related

Disable Vertical Scroll Bars

Jul 20, 2005

is there any way to disable or lock vertical scroll bars on a browser
window? im a newbie and i just don't want them to appear on my screen.
sometimes they appear on IE but not on mozilla.

View 3 Replies View Related

Reverse Scroll Bars For Chatroom

Jul 15, 2009

I have created this chatroom using php and scriptaculous but I am stuck with a tiny issue which I believe is only solvable using Javascript.

I have attached 2 screen shots. 1.jpg is what I get at the moment and 2.jpg is what I want to get.

As you see when somebody sends message and the messages exceed pages size, the scroll bars appear, I need the scroll bar to be the oposite direction (down to top) like yahoo or msn or any other chat room.

View 3 Replies View Related

Setting Variables From Selector Bars ?

Feb 13, 2009

I'm having problems setting variables from selector bars. I've currently been trying different forms of document.getElementById() but to no avail.

View 4 Replies View Related

Drop-down Menu Bars For Navigation

Apr 8, 2009

I don't know much about javascript, but it seems every time I come across something relating to "drop down menus" such as this one: [url] - you have to enter the link codes on every page you display the menu on.

So, here's my question. I want to display a drop-down menu bar similiar to the one in the link. I want it on ALL of my pages within my website, and the website has LOTS of pages - those I've built in Frontpage with HTML. I know I have to have the .js file and something else copied into the header of the pages, but it's telling me to copy and paste the menu bar part (with the links) into the body. If I do that, I'll have to go in and manual change all the links in EVERY page if I want to add or delete a link. I know there has to be a way in which I can make this happen on every page without and just edit one file if need to change something.

View 14 Replies View Related

Voting System With Horiztontal Bars

Nov 16, 2009

Does anyone know a good example on where to find something that when I click on vote it calculates the results and then shows me horizontal bars to show the percentage for each vote? There will only be two?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved