Parallax is choppy-Firefox vs Chrome

I am working on a parallax site and when I "preview in browser" at home everything works silky smooth in Chrome. When I take the files to work and try it there (on an amost identical machine) the animation / scrolling is extremely choppy in Chrome but looks great in Firefox. Is there any particular reason for this. I haven't tried uploading the HTML to an actual server yet and testing it "live" but I would like to understand why the dramtic difference in performance.
Any help?
Thanks
>K.

Wow... I have a field day now that i understand the basics of Parralax.
But the preview and the result are indeed choppy.
http://speeltuin02.businesscatalyst.com/index.html
The png24's are a bit on the big side, I have to make them smaller (with tinypng a realy good site folks!)
On the firefox side all things are silky smooth...
Do you have maybe a runaround?
Tnx so much I enjoy working with Muse.
Gerwald Radsma
(certified photoshop expert)

Similar Messages

  • Sharepoint foundation 2013: office docs can be opened in browser using IE but not in firefox or chrome?

    Hi
    Sharepoint foundation 2013:
    why when we open an excel or word  using chrome and firefox browser it wants to download the file.
    It can be opened in browser using IE but not in firefox or chrome?
    Any issues?
    Thanks

    Hello MGerio,
    Can you check what your Browser File Handling settings are of the web application (of the excel/word files)?
    http://social.technet.microsoft.com/wiki/contents/articles/8073.sharepoint-browser-file-handling-deep-dive.aspx
    - Dennis | Netherlands | Blog |
    Twitter

  • I have a basic applet method timing problem with Firefox (and Chrome), not IE nor Opera. Works if JavaScript issues windows.alert() prior, fails otherwise.

    I have an applet method, which is invoked from a JavaScript function, that is triggered by the window.onload event. The problem seems to center in the loading of the applet and its methods.
    If I step through the 3 applet acceptance prompts (I chose to use a down-level Java), the applet method is never invoked, nor is an exception raised. How this happens is beyond my understanding.
    As additional information, the Init(), start(), and "desired" Java methods all use the synchronized keyword. This is an attempt to minimize the exposure to a multi-thread environment.
    If I issue a message from JavaScript (via window.alert()) PRIOR to invoking the method, I can get the desired results in special circumstances:
    1) When the alert is presented, Firefox also prompts, SIMULTANEOUSLY, to block/continue the applet (the first of the 3 applet acceptance prompts). I can accept that these are separate threads.
    2a) If I walk through the 3 applet acceptance prompts FIRST, and then hit the OK button on the alert message SECOND, I get the desired results, my applet method executes, and all is well (other than the fact that I would prefer not to have the alert in place at all).
    2b) If I hit the OK button on the alert message FIRST, and then walk through the 3 applet acceptance prompts SECOND, I get the same results as when the page loads WITHOUT the alert, which is the applet method is never invoked, nor is an exception raised. Weird, huh?
    The above problem only occurs when the browser and the applet's URL are loaded for the first time.
    Subsequent invocations (after the page & applet has been loaded initially) do not have the failing symptoms.
    It is my understanding that IE and Firefox (and Chrome and Opera, for that matter) each use the same implementation of JavaScript provided by Microsoft. Please correct me if this information is inaccurate.
    The failing page and it's applet are proprietary; I cannot provide the Internet URL, nor the Java or JavaScript source, to aid in your analysis.

    I can speak to the source code, but have no access to it.
    The current process/thread that invokes an applet method must check to see that the applet is not currently being loaded by another process/thread. If it is being loaded, the current process/thread should block until the load is complete, THEN attempt to invoke the applet method.
    Please forward my concern to a knowledgable developer. The nature of the problem, once identified, can be addressed in a very straightforward manner.

  • My youtube does not work on safari only when i try to play a video it says "This video is not available on mobile add to playlist" But i am using a mac air 11 inch it is not a mobile. Please Help. i have to use the youtube on firefox or chrome

    my youtube does not work on safari only when i try to play a video it says "This video is not available on mobile add to playlist" But i am using a mac air 11 inch it is not a mobile. Please Help. i have to use the youtube on firefox or chrome. At times it also say QuickTime Player can't open "video.3gp". and
    The file may be damaged or may not be a movie file that is compatible with QuickTime Player. when i try to open a video on youtube on safari

    I too am having the same issue as the OP.
    Your USER AGENT information is Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18
    Every webserver that receives a request from your browser is able to determine the HTTP USER AGENT information unless it has been removed by some software (e.g. firewall) before the request was trasmitted.

  • I have a MacBook Pro 5,4 running OSX 10.6.8 and Safari 5.1.10. A website i like has a known bug with 5.1.10 and recommends I install a newer version of Safari or use Firefox or Chrome. Just looking for advice on the best approach. Thanks!

    I have a MacBook Pro 5,4 running OSX 10.6.8 and Safari 5.1.10. A website i like has a known bug with 5.1.10 and recommends I install a newer version of Safari or use Firefox or Chrome. Just looking for advice on the best approach. Thanks!

    Unfortunately, Safari cannot be updated past 5.1.10 on a Mac running v10.6.8.
    So, the options are to upgrade to a newer OS X or use Firefox or  Chrome.
    Be aware, Apple no longer support Snow Leopard v10.6 >  www.ibtimes.com/apple-kills-snow-leopard-os-x-106-no-longer-receives-security-u pdates-1558393
    See if your Mac can run v10.9 Mavericks >  OS X Mavericks: System Requirements
    If so, you can download and install Mavericks for free from the App Store.
    Read prior to upgrading >   Upgrading to 10.7 and above, don't forget Rosetta! | Apple Support Communities

  • JQuery/Javascript not working on Firefox and Chrome

    Hi guys, I've had this Jquery/Javascript on my page for a long time. This has stopped working. If the user clicks on buttons on the Apex page, nothing happens.
    It works on IE but doesn't work on Firefox and Chrome. It used to work fine.
    Is there anything I can change to make it work on all 3 browsers?
    Firefox error console shows a syntax error at this point in the script:
    $allButtons.click(function(){
    itemChanged = false;
    var toDo = $(this).attr('data-submitval');
    eval(toDo);
    Please can someone help?
    This is the full script:
    <script type="text/javascript">
    //<![CDATA[
    var itemChanged = false;
    $(document).ready(function(){
    var $items = $(':input');
    var $htmlButtons = $(':button[id]');
    var $templateButtons = $(':button[class]');
    var $allButtons = $($htmlButtons).add($templateButtons);
    $items.change(function() {
    itemChanged = true;
    $templateButtons.attr('data-submitval', function(){
    return $(this).attr('onclick').toString().split('\n')[2];
    $htmlButtons.attr('data-submitval', function(){
    return this.id;
    $allButtons.removeAttr('onclick');
    $allButtons.click(function(){
    itemChanged = false;
    var toDo = $(this).attr('data-submitval');
    eval(toDo);
    $('a').click(function(event){
    if ($(this).children('img[id="P&APP_PAGE_ID._DATE_PICKER_IMG"]').length > 0) {
    event.preventDefault();
    eval($(this).attr('href'));
    window.onbeforeunload = function() {
    if (itemChanged) {
    return 'You have made changes to data on this page. If you navigate away from this page without first saving your data, the changes will be lost.';
    //]]>
    </script>
    Thanks
    Sam
    Edited by: sam on 29-Jan-2013 03:50

    JavaScript doesn't work on any site at all? If particular sites are the issue, or you get specific error messages, please let us know.
    Usually the only two ways to disable JavaScript in Firefox are:
    (1) Options dialog > Content tab<br>
    (2) NoScript add-on (or other security-related add-ons)
    Normally Safe Mode bypasses issues caused by add-on problems or non-default settings, so it's worth considering external issues.
    Does JavaScript work normally in any other browsers you have installed?

  • Data is lost when form is completed under Firefox or Chrome

    I have an interactive pdf, created with Acrobat X Professional, with user rights extended so that form data can be saved using Reader.  The intent is for users to complete an online form in their browser and be able to save the data to their local disc.  This works under IE, Opera and Safari.  However, Firefox and Chrome appear to have default pdf viewers which do not recognize the Reader extension.  The pdf can be saved, but the form data is lost.  Is there a remedy for that?

    Until there is a better solution, I am using javascript to detect whether the user's browser has the Adobe Reader plugin enabled.  If not, a different version of the pdf is served, which does not tell the viewer that form data can be saved, and does not include other features which Chrome's pdf viewer can't accommodate.

  • I can't copy and paste from Word to the Internet (Firefox or Chrome), but I can copy and paste from Internet to Word

    I suddenly can't copy and paste text from Word to the internet (Firefox or Chrome, email or other websites), but I can do the reverse. Any ideas? Copy and paste works between Word docs, and it works between internet sites (e.g., web page to email), just not from Word to the internet. Please help. I need to copy and paste my resume for an online job application.

    There are a range of different kinds of forms. For example, this site uses very simple controls that don't automatically convert Word's formatting to an online format. The site where you are trying to paste your resume probably works differently.
    What methods have you tried using to paste? Typically one of these will work:
    * Ctrl+v
    * right-click > Paste
    * Edit > Paste (from the menu)
    Some sites offer their own buttons to paste, but for security/privacy reasons, Firefox usually disables those.

  • Flash Player constantly crashes on Firefox and Chrome, works on Safari

    Hello!
    This is my first time posting here. I've been working on this all day and have made NO progress.
    I'm on a Mac OS X 10.9.3 (this was also happening with 10.9.2, I applied the 10.9.3 update today hoping it would make difference).
    ANY version of Flash Player I've installed today has worked fine on Safari, and not worked on both Chrome and Firefox. I've uninstalled reinstalled both Firefox and Chrome many times. Both browsers are up to date (Chrome v34, Firefox v29). There are no logs or anything ever.
    The plugin runs for a little bit then dies. I've tried reverting to version 12, and version 11, neither made a difference. I've done the whole disable the pepper plugin with Chrome and had Chrome using the other one I had installed. No difference.
    I'm OUT of ideas and can't find any other information or help with this. PLEASE HELP!

    Your issue is distinct from the original poster's issue about a crash on Mac.  I've branched this out to a new thread so that we're not confusing everyone.
    Firefox on Win8 isn't very stable.  We're collaborating with Mozilla on improvements, and my test results with the daily development builds are really promising, but it will be a few more weeks before they actually make it to production releases.
    In the meantime, you're way better off using IE or Chrome. 

  • Drag and Drop not working with IE11,Firefox or Chrome on Windows 7 x64 SP1

    Hello,
     I am trying to use drag and drop on my system but it is not working. other's within my department have no issues, but they are using IE10. I also have SharePoint Designer 2013 installed.
    Any suggestions?
    Thanks,
    Derek

    Derek,IE11 is having some compatibility issues with the share point.Apart from IE11,it should work on IE10,9 and Firefox and chrome as well.
    Please check the links below that explains the issues with IE11 and the functionality of Drag and drop and limitations as-well.
    1.Since SharePoint 2013 fully support IE 32-bit version above 7, there might be compatibility issue with other browsers. I’d recommend you use IE 8,9,10 32-bit for optimal Performance.
    2. Open the same document library in Internet Explorer as this functions does not work with Firefox or Chrome by default
    3. Make sure the IE (Internet Explorer) Version should be 32-bit and not a 64-bit
    http://expertsharepoint.blogspot.de/2014/08/issues-with-sharepoint-2013-and.html
    http://expertsharepoint.blogspot.de/2013/12/how-to-upload-multiple-documents-in.html
    http://expertsharepoint.blogspot.de/2013/12/sharepoint-server-2013-drag-and-drop.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Uploaded pdf-documents generates code instead of pages in firefox and chrome (however they work in safari)

    this is a new problem after having upgraded to mountain lion.
    when I attach a hyperlink to my pdf-document that I like to display on the web - the pdf-document will not show up in Firefox or Chrome - it generates a lot of code instead.
    I have only uploaded the files to my computer (not released on the web yet) - as I can see all files are neatly displayed in the appropriate pagefolder.
    One of the themes (modern) provided as a standard feature in iWeb has been used. In Chrome the menu does not show up either (although safari and firefox displays the menu correctly)

    I should have given you some info about testing the local version of your site. As you probably realise, its almost useless testing your site in Safari since hardly anybody uses it.
    In OS X up to Snow Leopard, we could set up Web Sharing from System Prefs but Apple made this difficult in Mountain Lion.
    See the bottom of this page for info about testing the local version of your website...
    http://www.iwebformusicians.com/iWeb/mountain-lion.html

  • A few of my pages don't work with Firefox nor Chrome. How do I fix this?

    I created my website from scratch (enjoyaquatics.com) but unfortunately a few of my pages don't work with Firefox nor Chrome. How do I fix this?
    Everything looks and works GREAT on Safari but not Firefox, Chrome, nor Internet Explorer.

    The pages look fine in FF and Chrome on my Mac. Didn't check with Win XP.
    If you use MSIE on a Mac, know that it became obsolete in 2003.
    I noticed what I call wobbly text on your pages. Here's the solution :
         iWeb : Prevent wobbly text in textboxes

  • Flash player not working in IE, firefox, or chrome, on windows 7

    I have used flash player in the past, up until yesterday, and today when I connected, and tried to use YouTube, firefox froze up, and after waiting for several minutes, I force closed firefox. I tried again with IE, and the same thing happened. I also tried on chrome, and still freezing, so I uninstalled and reinstalled the flash player, AND firefox, but the same thing happened.
    This is very annoying. Does anyone have a solution?

    Derek,IE11 is having some compatibility issues with the share point.Apart from IE11,it should work on IE10,9 and Firefox and chrome as well.
    Please check the links below that explains the issues with IE11 and the functionality of Drag and drop and limitations as-well.
    1.Since SharePoint 2013 fully support IE 32-bit version above 7, there might be compatibility issue with other browsers. I’d recommend you use IE 8,9,10 32-bit for optimal Performance.
    2. Open the same document library in Internet Explorer as this functions does not work with Firefox or Chrome by default
    3. Make sure the IE (Internet Explorer) Version should be 32-bit and not a 64-bit
    http://expertsharepoint.blogspot.de/2014/08/issues-with-sharepoint-2013-and.html
    http://expertsharepoint.blogspot.de/2013/12/how-to-upload-multiple-documents-in.html
    http://expertsharepoint.blogspot.de/2013/12/sharepoint-server-2013-drag-and-drop.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • HT5113 Course Manager only works in Safari; it's broken in Firefox and Chrome. Is this intentional?

    Course Manager is not working in Firefox or Chrome. Is this intentional on Apple's part?

    While trying to use Course Manager from Chrome, a message appears that says only Chrome or Safari can be used.  I'm in Chrome, so that's out, despite the message that it works.  That leaves only Safari, which Apple hasn't updated for Windows since May of 2012, despite many known vulnerabilities.
    Looks like I need to keep a Mac on hand, thanks Apple.

  • My iWeb site loads in Safari, but not in Firefox, Opera, Chrome. Why?

    I built my homepage with iWeb.
    I am hosting over Mobile Me.
    My Domain name is registered at Godaddy.
    My site was online for the longest time. Now I did some changes and uploaded the site again.
    With Safari, I can access my homepage.
    Not so with Firefox, Opera, Chrome...
    What could be the reason for this?
    Thanks in advance!

    I am a little bit smarter now:
    When I use the full url, it is working in Safari and Chrome too.
    http://www.jaspergranderath.com/Cinematographer/Home.html
    This wasn't neccessary earlier...
    How do I manage that people can access my site with just going for
    www.jaspergranderath.com

Maybe you are looking for

  • COPA reporting tool

    My client want following: In the selection screen for a copa drilldown report they want that period and year are automatically filled with todays date. I have not managed this yet. If it is through global variables I need detailed advice on how to pr

  • How do I set a mail rule to select msgs on which i am BCCd?

    Went to set up a rule for a particular address as 'Any Recipient' but this does not work if the sent mail had me in the BCC list.  How do I filter on this? (sender also using mavericks mail). tnx - jt

  • Pacman says i need kernel26-2.6.13.4-3 even tho i have .....

    Ok so i did today my daily pacman -Syu and with some other packages that it says i need to update also is listed kernel26-2.6.13.4-3 even tho im running arch with kernel26-scsi-2.6.13.4-3 , i have no idea why this his happening but something tells me

  • Problem with Bulk Collect ... FORALL

    I've written following code to bulk collect records from a cursor into a collection and insert it into a table using FORALL loop OPEN x;     LOOP       FETCH x BULK COLLECT INTO v_collection LIMIT 1000;       FORALL i IN 1..v_collection.count        

  • Forum question: How to set Show All Messages as default?

    I seem to remember there was a way to set this as a default, so that when one clicks on a topic, all new (unread) posts are shown. Currently, I only see a subset of the new postings, and I have to click on "Show All Messages" to see them all. The num