How to do a site like this on adobe muse? the sliding page effect...

Something like this website... http://www.razvangarofeanu.com/#the-g is this possible on adobe muse? THANKS!

Hi Macky,
This website that you have mentioned utilizes the "Scroll Effects" In Muse and the designer has applied the Horizontal Scrolling effects.
Please refer these links in order to understand how it can be done :-Add scroll effects | Learn Adobe Muse CC | Adobe TV
Adobe Muse CC Motion Scroll (Parallax) Tips & Tricks - MuseThemes.com - YouTube
Adobe Muse CC Scroll Effects Tutorial | Animated Goodie Box - YouTube
The basics of horizontal scrolling websites from the Course Designing a Portfolio Website with Muse
Adobe Muse CC Parallax Scrolling Tutorial | Horizontal Scrolling Websites - YouTube
Cheers,
Rohit Nair

Similar Messages

  • How to make an avatar like this,

    Hello Adobe Community, i'm new here, i have a big question. I want to know HOW to make an avatar like this:
    I want to know how to do that effect that who zoom in and zoom out etc. WITHOUT SNOWING, only that effect, if you can help me please!
    That zoom effect is AWESOME... send me a tutorial please!

    I thought you said you knew how to make animated gif.  A frame is the composite of the layers that have their visibility on for the frame a frame may be made using many layers. You use tools and filters on layers.You make frame using layers.
    Photoshop also supports any size layer. Layers can be  larger the canvas size can have image data out side the canvas.  Layer image data position above can be move relative to the canvas.  The Cloud logo animation has two layer one is masked is masked the mask is not linked to the layers image data it stationary over the canvas and is more on less a masks more foe the background canvas then the layer its on. The layer it is on image data is more off canvas then over canvas. Photoshop also notes layer position in a frame information, A layer potion can be change from frame to frame. I only create two frame for that animation.  The first and last frame, The first frame I had the top late image JJMACK high and off canvas to the left.  The last frame had it low and off canvas to the right. I then had Photoshop generate 138 frames between the two frames I created.  So Photoshop moved the top layer position across the canvas  left to right and high to low direction and the stationary layer mask masked it as if it were going through the background layers clouds.  The two layers are visible in all frames.

  • How Could I Make Something Like This.

    http://www.youtube.com/watch?v=vlRdjAwEzbU
    I Am Wondering How I could make something like this in AfterEffects CS4.
    Any Help Would Be Appreciated.

    dx394 wrote:
    Is There A Tutorial Anywhere About It?
    You could contact the animator or whoever posted the clip.
    Deconstruct the sequence. observe the moves and decide, with your present level of familiarity, how you would approach it. Scaling of the ten or so different layers is simple enough but acquiring the contents of the layers is not something you will do in AE.
    As Todd says, start small, figure it out one step at a time, move on to more advanced functions. Animting 3D layers is 9 times more difficult than 2D. when you add lighting and camera moves you raise the complexity level and rendering time to another power making your project about 27 times more difficult.
    bogiesan

  • How can i generate xml like this?

    Hi all,
    How can i generate xml like this & i need to send it to via HTTP :
    <mms>
                 <subject>message subject</subject>
                 <url_image>http://image_url</url_image>
                 <url_sound>http://sound_url</url_sound>
                 <url_video>http://video_url</url_video>
                 <text>message text</text>
                 <msisdn_sender>6281XYYYYYY</msisdn_sender>
                 <msisdn_receipient>6281XYYYYYY</msisdn_receipient>
                 <sid>to be define later</sid>
                 <trx_id>Unique number</trx_id>
                 <trx_date>yyyyMMddHHmmss</trx_date>
                 <contentid>see note</contentid>
    </mms>& how can i get the value of the sid (for example)?
    I hav tried to generate that xml by using StringBuffer & append, but it's not what i mean...
    Anyone can help me?

    Ok...i got it. But i still hav some problems.
    This is the sample code that i used :
    public class XMLCreator {
         //No generics
         List myData;
         Document dom;
            Element rootEle, mmsEle, mmsE;
            StringWriter stringOut;
            mms mms;
         public XMLCreator(String subject, String image, String sound,
                    String video, String text, String sender, String recipient,
                    int id, String date, String contentid) {
              mms = new mms(subject, image, sound, video, text, sender,
                            recipient, id, contentid, date);
                    createDocument();
         public void run(){
              createDOMTree();
              print();
         private void createDocument() {
              //get an instance of factory
              DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
              try {
              //get an instance of builder
              DocumentBuilder db = dbf.newDocumentBuilder();
              //create an instance of DOM
              dom = db.newDocument();
              }catch(ParserConfigurationException pce) {
                   //dump it
                   System.out.println("Error while trying to instantiate DocumentBuilder " + pce);
         private void createDOMTree(){
              //create the root element <Mms>
              rootEle = dom.createElement("mms");
              dom.appendChild(rootEle);
              createMmsElement(mms);
         private Element createMmsElement(mms b){
              Element subjectEle = dom.createElement("subject");
              Text subjectText = dom.createTextNode(b.getSubject());
              subjectEle.appendChild(subjectText);
              rootEle.appendChild(subjectEle);
              //create url_image element and author text node and attach it to mmsElement
              Element imageEle = dom.createElement("url_image");
              Text imageText = dom.createTextNode(b.getUrl_image());
              imageEle.appendChild(imageText);
              rootEle.appendChild(imageEle);
              // & etc....
              return rootEle;
          * This method uses Xerces specific classes
          * prints the XML document to file.
         private void print(){
              try
                   //print
                   OutputFormat format = new OutputFormat(dom);
                   format.setIndenting(true);
                            stringOut = new StringWriter();
                   //to generate output to console use this serializer
                   XMLSerializer serializer = new XMLSerializer(stringOut, format);
                   //to generate a file output use fileoutputstream instead of system.out
                   //XMLSerializer serializer = new XMLSerializer(
                   //new FileOutputStream(new File("mms.xml")), format);
                   serializer.serialize(dom);
              } catch(IOException ie) {
                  ie.printStackTrace();
            public String getStringOut() {
                return stringOut.toString();
    }when i tried to show the stringOut.toString() in my jsp, it's only showed string like this :
    The Lords Of The Ring http://localhost:8084/movie/lotr.3gp 6281321488448 6281321488448 123 0 20070220114851 LOTR.
    1. Why this is happen?i want to generate xml which its format is like above.
    2. How can i send this xml (put in msg parameter) using jsp (via web) without creating the mms.xml?
    3. if i want to set the msg parameter equal to mms.xml - means that msg = mms.xml, what is the data type for msg? is it an object or anything else?
    Thx b4 in advance...

  • I was wondering how you would do something like this?

    Hi i was wondering how you would do something like this?
    i recently got photshop CS5 and wanted to do something like this!

    Not sure exactly what the effect you are looking at, but my first glance is just an overly of 3 or more pictures.  The portrait in the back is just like 50% transparency.

  • HT201441 I found a phone that had been stolen, so I asked apple id to its original owner she said that she had forgotten and replace the apple id, how to solve a problem like this?

    II found a phone that had been stolen, so I asked apple id to its original owner she said that she had forgotten and replace the apple id, how to solve a problem like this?

    Send the original owner this link.
    (120249)

  • I am a beginner of "pages" and have this problem of dots while writing the text. I dont know how to remove these bullets-like dots while spacing in the text. Please help

    I am a beginner of "pages" and have this problem of dots while writing the text. I dont know how to remove these bullets-like dots while spacing in the text. Please help

    Look up "formatting" in the User Guide.
    http://manuals.info.apple.com/MANUALS/0/MA524/en_US/Pages_UserGuide.pdf

  • Why has apple restricted adobe flash player?  How can one watch things like shows from CBS without the flash player?

    Wy has apple restricted the use of adobe flash player?  How can one watch things like shows from CBS without the flash player?

    This has been discussed a billion times. Please search before posting.
    Read this: http://www.apple.com/hotnews/thoughts-on-flash/
    CBS has apps for watching its shows. Search the AppStore.

  • Preview takes forever to open, much slower than on my old MacBook. It has been like this since I bought the computer last January. Why is Lion so much slower?

    Preview takes forever to open, much slower than on my old MacBook running Snow Leopard. It has been like this since I bought the computer last January. Any ideas?

    Take it to an Apple Store for testing. If you don't get immediate satisfaction, exchange it for another one, which you can do at no cost, no questions asked, within 14 days of delivery.

  • I would like to buy adobe muse. I live in Turkey. However, creative cşoud says that you live in bolivia and can not buy this item

    i would like to buy adobe muse. I live in Turkey. However, creative cşoud says that you live in bolivia and can not buy this item

    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -http://helpx.adobe.com/x-productkb/policy-pricing/change-country-associated-with-adobe-id. html

  • How Can I Make a Membership Website With Adobe Muse? Like Youtube, Facebook, Twitter.

    How Can I Make a Membership Website With Adobe Muse? Like Youtube, Facebook, Twitter. I need help!

    Yeah me too

  • All of a sudden, my settings have been changed, my homepage, and EVERYTHING. No matter how many times I go in and change them again, the SAME pages open up when I start FireFox and I am constantly being asked if I want Yahoo as my start page and default s

    I don't know what happened. All of a sudden, my settings have been changed, my homepage, and EVERYTHING. No matter how many times I go in and change them again, the SAME pages open up when I start FireFox and I am constantly being asked if I want Yahoo as my start page and default search engine. I click the box 'do not ask me again' and it comes up EVERY TIME. I change things like I don't want history remembered, and when I reload FireFox again, it's back to the way it was BEFORE. EVERY SINGLE TIME. I don't know why this is happening, or how to fix it. What do I do??

    I do not want to download another virus program.. I do not believe it is a virus. I am running the full version of Norton 360 and it is doing a daily scan. I have Windows 7, 64 bit OS.
    This is very irritating !! If I wanted Yahoo I would ask for it !

  • How can I have a standard text block appear on the last page of my documents?

    How can I have a standard text block appear on the last page of my documents without having to type it in all the time? I have a terms statement with a line for a customer’s signature which I want on the last page of my invoices and right now I have to type it in each time or cut and paste it from a previous invoice. I already have a Master Page that includes the customer information and my company information at the top of each page and I am using data merge to fill each page with the items ordered and their pictures etc. I would just like to have this standard terms block automatically show up on the last page after the last item in the data merge.
    Thank you all in advance for your help.

    Thank you Peter. This works. I have the text block now at the bottom of a second master page which I apply to the last page. For aesthetics I can modify the position of the text block in the new master page to bring it up from the bottom under the last item ordered when there is less than 4 items on the page. (my data merge fits up to 4 items with their images on a page).  If the last page is full I’ll insert a final page using the second master and also bring it up to the top of the page.

  • How do I make multi regional website with Adobe Muse?

    I am working for an art gallery with newly international presence.  I am creating 3 versions of a website in French, English, and eventually Mandarin.  While there will be links to bring visitors to mirroring pages in different languages, I want the language appropriate to visitors' device location to launch automatically.  In other words, www.site.com will bring users in Paris to French version of site while users in New York use the same address to access English site, each determined by their location.  Is this achievable in Adobe Muse?

    Hi
    Are you hosting site with Adobe Business Catalyst ? if yes!
    You may want to refer to this discussion : how to set up a multilingual website with Adobe Muse and push it live to Adobe Business Catalyst

  • How do I make a music link that plays on the open page?

    I want to display a image of a violin and have a on-off and slider bar underneath that shows playing progress for a short violin tune.
    As it is, I have a link to the mp3 file which, when clicked, opens another page and shows the slider bar and start/volume control. I would like it to stay on the same page that the user is viewing when he/she clicks on the violin.
    Can you help me with possible link on how this should be done? Or, give me a run-down on the steps to do this correctly in Dreamweaver? Can this be done simply in Dreamweaver or does it need to be done in another application like Flash?
    TIA,
    Ken

    To bring all the different elements together the way you want, my choice would be to do this in Flash.  Check the Adobe Flash Forum if you get stuck.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

Maybe you are looking for

  • Error with Windows Media Player ActiveX control

    When I try to drop in a Windows Media Player control I get an error: "Error loading type library/DLL" Any ideas?

  • Error 1015 when upgrading from 3.0 to 3.0.1

    Hello, I recently purchased an iPhone and my first time connecting it to iTunes it asked to upgrade from 3.0 to 3.0.1, which I assumed was fairly standard so I let it go. However, it made it about 75% through the progress bar on the iPhone display an

  • Outlook 2007 & Exchange 2007 - Out of office assistant not working

    Hi, when using outlook 2007 and the users mailbox is on an Exchange 2007 server the out of office assistant doesn't work. When you start the out of office assistant the following message is displayed: 'Your Out of Office settings cannot be displayed,

  • Opinion of 256Gb SSD?  Worth it?

    I don't know why Apple has the 320GB at 5400 rpm as their standard config, when the 320Gb at 7200rpm is only $45 more (for educators it is). If I want the 7200rpm drive I would have to order it so that got me thinking about getting the 256Gb SSD driv

  • Error report rep-3301

    se ejecuta los reportes a traves de run-product, desde form 4.5 en una BD 8i, no levanta la ventana de parametros. generando el error: REP-3301: Error occurred in Error Checking(RXGLER)