I want to make my animation responsive but its not working correctly.

Here is a better example of what the issue is.
http://re.g-ram.co/1uHfiWu
The animation is suppose to be right below the navigation. Can anyone guide me on what or how I can center it without having it absolute positioned at the top?
Its being written by jquery. one of my clients did the animation. All i am doing is integrating it in the html.

hey, thanks for the reply but that isn't the issue. my issue is that the animation doesn't stay within the div container. I tried what you said via chrome console but that's more of a hack way of doing it. I should be able to contain the animation within the div that its being wrapped with but for some reason it is jumping outside the div container.
Does that make sense? Would be awesome if there was a walkthrough on how the edge animation settings worked. for example the code below. would i need to adjust something below for it to contstrain within the container?
    scaleToFit: "both",
    centerStage: "both",
    minW: "320",
    maxW: "1200",
    width: "830",
    height: "430"
}, {"dom":{}}, {"style":{"${symbolSelector}":{"isStage":"true","rect":["320px","1200px","830px","430px"] ,"fill":["rgba(255,255,255,1)"]}},"dom":{}});

Similar Messages

  • I want to read a SD card, but its not working. What need i to do?

    I have a 8GB SD card, and i want that my macbook-pro read this card, i put the card into my MBP, but its giving no response, and it doing nothing?
    Does somebody know what I can do? (Im using MAC os LION)

    hey, thanks for the reply but that isn't the issue. my issue is that the animation doesn't stay within the div container. I tried what you said via chrome console but that's more of a hack way of doing it. I should be able to contain the animation within the div that its being wrapped with but for some reason it is jumping outside the div container.
    Does that make sense? Would be awesome if there was a walkthrough on how the edge animation settings worked. for example the code below. would i need to adjust something below for it to contstrain within the container?
        scaleToFit: "both",
        centerStage: "both",
        minW: "320",
        maxW: "1200",
        width: "830",
        height: "430"
    }, {"dom":{}}, {"style":{"${symbolSelector}":{"isStage":"true","rect":["320px","1200px","830px","430px"] ,"fill":["rgba(255,255,255,1)"]}},"dom":{}});

  • I bought my iphone 4 through ebay and its unlocked. the problem is that my phone does not sync straight away. I sync my music file through autofill. I want to sync ringtones but its not working

    i bought my iphone 4 through ebay and its unlocked. the problem is that my phone does not sync straight away. I sync my music file through autofill. I want to sync ringtones but its not working.
    I saw cidya aap so i m not sure if it was jailbroken or not before but it is back to normal settings.
    My problem started when I tried to sync my music files. I pressed 'sync' all it says is waiting for sync start, preparing to sync and then waiting for the changes to be applied. but it does not sync at all.
    I found a way to sync my music files through autofill but I really wanted to sync ringtones but its not syncing and I really wanted to put ringtones in my phone please help.

    If you see the cidya app, your iPhone is hacked with the cutsie term for this being jailbroken. This also means all the built in security has been removed making the iPhone as insecure as an android device.
    Restore the iPhone with iTunes as a new iPhone or not from the backup to get rid of that hacking garbage. If the iPhone has hacked to be unlocked, the iPhone will no longer be unlocked when doing so.

  • I have a manual that contains headings and index entries that contain less than and greater than characters, and . The Publish to Responsive HTML5 function escapes these correctly in the main body of the text but does not work correctly in either the C

    I have a manual that contains headings and index entries that contain less than and greater than characters, < and >. The Publish to Responsive HTML5 function escapes these correctly in the main body of the text but does not work correctly in either the Contents or the Index of the generated HTML. In the Contents the words are completely missing and in the index entries the '\' characters that are required in the markers remain in the entry but the leading less than symbol and the first character of the word is deleted; hence what should appear as <dataseries> appears as \ataseries\>. I believe this is a FMv12 bug. Has anyone else experienced this? Is the FM team aware and working on a fix. Any suggestions for a workaround?

    The Index issue is more complicated since in order to get the < and > into the index requires the entry itself to be escaped. So, in order to index '<x2settings>' you have to key '\<x2settings\>'. Looking at the generated index entry in the .js file we see '<key name=\"\\2settings\\&gt;\">. This is a bit of a mess and produces an index entry of '\2settings\>'. This ought to be '<key name=\"&amp;lt;x2settings&amp;gt;\" >'. I have tested this fix and it works - but the worst of it is that the first character of the index entry has been stripped out. Consequently I cannot fix this with a few global changes - and I have a lot of index entries of this type. I'm looking forward to a response to this since I cannot publish this document in its current state.  

  • I want to use a dynamic schema name in the from clause but its not working.

    DECLARE
         vblQueryName VARCHAR2(20);
         vblSchemaName VARCHAR2(20);
    BEGIN
         SELECT CurrentSchemaName INTO vblSchemaName FROM HR_989_SCHEMA;
         vblQueryName:='060_525_020';
         INSERT /*+ APPEND(HP_ELIGIBILITIES,4) */ INTO HP_ELIGIBILITIES
              LVL1ID,
              LVL1Desc,
              LVL2ID,
              LVL2Desc,
              LVL3ID,
              LVL3Desc,
              LVL4ID,
              LVL4Desc
         SELECT /*+ PARALLEL(a,4) */
              LVL1ID,
              LVL1Desc,
              LVL2ID,
              LVL2Desc,
              LVL3ID,
              LVL3Desc,
              LVL4ID,
              LVL4Desc
         FROM
         bold     vblSchemaName.HP_ELIGIBILITIES a
         WHERE
              UPPER(LVL2ID) = 'XX' ;
         COMMIT;
    DBMS_OUTPUT.PUT_LINE( 'Query Executed: ' || vblqueryName);
    INSERT INTO HP_QUERYEXECLOG(QueryName) VALUES(vblQueryName);
    EXCEPTION WHEN NO_DATA_FOUND THEN NULL;
    END;
    I want to create a rules table so that the schema name in front of the table name in the from clause can be controlled by a separate table that is maintained but its not working . Help and your valuable inputs needed for this issue

    I want to use a dynamic schema name in the from clauseyou can alternatively set the current schema as e.g. in:
    declare
       vblqueryname    varchar2 (20);
       vblschemaname   varchar2 (20);
    begin
       select currentschemaname into vblschemaname from hr_989_schema;
       vblqueryname := '060_525_020';
       execute immediate 'alter session set current_schema=' || vblschemaname;
       insert /*+ APPEND(HP_ELIGIBILITIES,4) */
             into hp_eligibilities (lvl1id,
                                    lvl1desc,
                                    lvl2id,
                                    lvl2desc,
                                    lvl3id,
                                    lvl3desc,
                                    lvl4id,
                                    lvl4desc
          select /*+ PARALLEL(a,4) */
                lvl1id,
                 lvl1desc,
                 lvl2id,
                 lvl2desc,
                 lvl3id,
                 lvl3desc,
                 lvl4id,
                 lvl4desc
            from hp_eligibilities a
           where upper (lvl2id) = 'XX';
       commit;
       dbms_output.put_line ('Query Executed: ' || vblqueryname);
       insert into hp_queryexeclog (queryname)
       values (vblqueryname);
    exception
       when no_data_found
       then
          null;
    end;

  • Hi, i would like my membership cancelled. I got it yesterday but its not working the way i wanted it to work. How do i go about that i getting my refund as its before 30 days.

    Hi, i would like my membership cancelled. I got it yesterday but its not working the way i wanted it to work. How do i go about that i getting my refund as its before 30 days.

    Hi kondwastefstef,
    I'm sorry that your subscription didn't meet your needs. Please contact Adobe Customer Support via phone or chat; they should be able to cancel your account and process your refund. Here's the contact information: Contact Customer Care
    Best,
    Sara

  • I bought an app but its not working!

    I bought the pocket dictionary app pro for £2 but now it's installed, its gone straight to the unistalled section on my blaackberry app world and won't let me reinstall it. I've paid for it but its not working. Any suggestions?

    Hello chloewilliams
    Welcome to BlackBerry Support Community Forums
    First  Clear your App World Cache for that :
    Open App World  >  Go to My World > 
    Keyboard based – Hold down the ALT key and then press RST
    For Touch Screen Only BBs -- Hold the num-lock  button so it locks and then press, in sequence 3, then 4, then (
    KB24714 How to clear the BlackBerry App World cache
    App World shall Close
    Please Perform a Battery Pull Restart like this While Device is Powered On remove the Battery wait for a min. then re-insert it back wait till the device take a long Reboot.
    After that please have a try and see if it allow you the Install option.
    Prince
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • Ive tried to reset my iclouds password but its not working

    i need to activate iphone 4s, ive tried on my laptop to re-set it but its not working, ive been trying for the pass 3hours?
    i just want to use my phone again?
    i cant remember setting a password?
    I aslo cant remember if i created two different passwords for iclouds and appleID.
    NEED HELP?

    Contact Apple for assistance by going to https://expresslane.apple.com, then click More Products and Services>Apple ID>Other Apple ID Topics>Lost or forgotten Apple ID password.

  • HT1212 i forgot my passcode, i did whatever was told to me from the above information but its not working.

    i forgot my passcode, i did whatever was told to me from the above information but its not working.

    Forgotten Screen-Lock Passcode
    Connect the iOS device to your computer and try to make a backup
    iOS: How to back up
    Then restore via iTunes. The iPod will be erased. Place the iOS device in Recovery Mode if necessary to allow the restore.
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up    
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store    
    If problems, what exactlyhappens or does not happen and when?

  • HT204150 Following problem: I have around 600 contacts on my iphone and Ipad and would like to sync with contact list on my mac book air but its not working and whatever I do I get stuck on the 44 contacts I have on my mac  contact-list. Please Help!!!! 

    ollowing problem: I have around 600 contacts on my iphone and Ipad and would like to sync with contact list on my mac book air but its not working and whatever I do I get stuck on the 44 contacts I have on my mac  contact-list. Please Help!!!!  thanks

    First, be sure that the contacts on the devices are in the "icloud" section and not the "On my iPhone" (or iPad) section of the contact listings/groups.
    Missing contacts:
    Here's a test to perform - using a computer's browser, log into icloud.com and go to the Contacts page.  If most of them are gone, then they are gone. 
    If they show up, then the problem is that your device is not connecting to the Contacts database on icloud. 
    On the device, go to Settings>icloud.  Be sure icloud is on and using the right ID.  If not, scroll to the bottom of the page and tap Delete Account - this just disconnects the device from that account, no data is lost.  Then log back in using the correct ID.  ALSO - be sure the Contacts are turned on (on the same screen).
    Note:  Contacts are not part of an iCloud backup, since they are part of contacts database on iCloud's servers.   So performing a restore will not help.
    Contacts are gone from icloud.com.
    Then they have been deleted.  There are many reasons for this.  One possibility is that someone else is using the same iCloud account (family member, etc.) and they deleted contacts, thinking they did want them on THEIR device.  How to get them back?  Unfortunately, an iCloud backup does not include any of the sync databases, like contacts, notes, calendars, reminders, etc. because the data is already stored in these databases.  Your only hope for restoring the data is if you had that data on a computer (like a mac's Contacts, Calendars, etc.) and that data was backed up using whatever backup software you typically use (e.g. Time Machine on a mac).  Just restore the data files back to the computer.  Other than that, I'm afraid the data is gone.

  • Hi i have bought an iphone from dubai but its not working in pakistan

    hi i have bought an iphone from dubai but its not working in pakistan its not syncing my phone displaying mesage that invalid sim card. I have changed sim card but its not working. Can you please help to to make it work. Its a pay as u go phone.

    Fais1 wrote:
    I have called to the shop where i bought the phone they told me that phone is not locked. I have tried so many times but phone is not working vth any sim a part from the one i have bought from dubai. Pls let me know how to check that phone is locked or not. Thanks
    And, of course, they would NEVER lie to you after they already have your money...

  • HT4865 Have tried to verify my icloud account, but its not working the Verifying screen is just scrolling round, but not doing anything

    Have tried to verify my icloud account, but its not working, the Verifying screen has been scrolling for ages now, it seems stuck, but it wont let me do anything, please help

    " I ordered the Snow Leopard software and tried installing it, but it stopped and said to clean the disk."
    First off, your installation disc is in all likelihood faulty.
    This has been a known issue in the past:
    Faulty Snow Leopard install discs - Apple has no timeline on ...
    http://store.apple.com/us/help/returns_refund#policy:
    *You can return software, provided that it has not been installed on any computer. Software that contains a printed software license may not be returned if the seal or sticker on the software media packaging is broken.

  • I forget my password to my ipod and i have try to rerstart it but its not working what should i do?

    i forget my password to my ipod and i have try to restart it but its not working. i have done i could think of please help!!

    If You Are Locked Out Or Have Forgotten Your Passcode or Just Need to Restore Your Device
      1. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
      2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
      3. iOS- Understanding passcodes
      4. What to Do If You've Forgotten Your iPhone's Passcode
      5. How to Recover Forgotten iPhone Restrictions Passcode | The iPhone and iPad Blog
         If you have forgotten your Restrictions code, then follow the instructions
         below but DO NOT restore any previous backup. If you do then you will
         simply be restoring the old Restrictions code you have forgotten. This
         same warning applies if you need to restore a clean system.
    A Complete Guide to Restore or Recover Your iDevice (if You Forget Your Passcode)
    If you need to restore your device or ff you cannot remember the passcode, then you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and re-sync the data from the device (or restore from a backup). If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present. Refer to Updating and restoring iPhone, iPad and iPod touch software.
    Try restoring the iOS device if backing up and erasing all content and settings doesn't resolve the issue. Using iTunes to restore iOS devices is part of standard isolation troubleshooting. Restoring your device will delete all data and content, including songs, videos, contacts, photos, and calendar information, and will restore all settings to their factory condition.
    Before restoring your iOS device, Apple recommends that you either sync with iTunes to transfer any purchases you have made, or back up new data (data acquired after your last sync). If you have movie rentals on the device, see iTunes Store movie rental usage rights in the United States before restoring.
    Follow these steps to restore your device:
         1. Verify that you are using the latest version of iTunes before attempting to update.
         2. Connect your device to your computer.
         3. Select your iPhone, iPad, or iPod touch when it appears in iTunes under Devices.
         4. Select the Summary tab.
         5. Select the Restore option.
         6. When prompted to back up your settings before restoring, select the
              Back Up option. If you have just backed up the device, it is not necessary
              to create another.
         7. Select the Restore option when iTunes prompts you (as long as you've backed up,
             you should not have to worry about restoring your iOS device).
         8. When the restore process has completed, the device restarts and displays the Apple
             logo while starting up:
               After a restore, the iOS device displays the "Connect to iTunes" screen. For updating
              to iOS 5 or later, follow the steps in the iOS Setup Assistant. For earlier versions of
              iOS, keep your device connected until the "Connect to iTunes" screen goes away or
              you see "iPhone is activated."
         9. The final step is to restore your device from a previous backup. If you do not have a
              backup to restore, then restore as New.
    If you are restoring to fix a forgotten Restrictions Code or as a New device, then skip Step 9 and restore as New.

  • My phone died last night and when I plugged it in it wouldn't turn on.I tried restarting it but it has yet to turn on since last night,It was just a black screen,i try the on/off and home buttons together but its not working,What should I do?

    My phone died last night and when I plugged it in it wouldn't turn on.I tried restarting it but it has yet to turn on since last night,It was just a black screen,i try the on/off and home buttons together but its not working,What should I do?

    How long have you had your phone? Because if you've had it a long time, the battery in the phone might of died on you. Or have you dropped it in water, snow, from high up? All those things could of disconnected something internally in your phone, or permentaly damaged the internal hard drive its self, or the sims card.

  • My vreative cloud downloaded and so did PS but now its saying there is an error...update failed and im retrying it but its not working what do i  do?

    my creative cloud downloaded and so did PS but now its saying there is an error...update failed and im retrying it but its not working what do i  do?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If you've already tried a complete uninstall and reinstall try opening iTunes in safe mode (hold down CTRL+SHIFT as you start iTunes) then going to Edit > Preferences > Storeand turning off Show iTunes in the Cloud purchases. You may find iTunes will now start normally.
    tt2

Maybe you are looking for