How can I create a menu for a site to scroll a page for mobile devices?

Hi, Im trying to create a menu for my version of phone of my a roll site page. I created a nice menu with the help of the Accordion widget, which when opened gives you links to different sections of the site that are defined by anchor points. The problem is when you select an element of the Accordion widget menu, it will automatically close after a click on the menu item. The site scrolls behind the menu, but you'll need to physcially close the menu by clicking on it again. It is of course a very bad user experience. I tried various menus third parties none of which work for sites of a page. Given the many Web sites is a scrolling page sites seems to be a major problem for users of Muse who have no menu option for this kind of design! Anyone know of any code that could be used to automatically close the Accordion widget when you select an item in the menu? Please help Ive spent a lot of time designing this site for the office but now having to PAP I can't produce the version phone, I really don't want to have to resort again to Wordpress.

Thanks in advance!

Hello! Active States help the user to see that they are on a separate page, and they can click the close button.

Or you can see what I've done on the mobile page for one of my models that is very UI/UX friendly partially because of this reason (http://flowz.ljdezignz.com/phone/).

Tags: Adobe Muse

Similar Questions

  • I have problems of space on my iPhone 6. I have only 21 photos and 2 videos on my phone. However, I am on a discussion group on whatsapp. How can I create more space for my phone? I also have very few applications on my phone.

    I have problems of space on my iPhone 6, I have only 21 photos and 2 videos on my phone. However, I am part of a chart group on whatsapp. The problem now is that my storage space is almost full. How can I create more space for photos and everything?

    You cannot create more space for everything.  All you can do is remove apps, photos and especially videos to make room for other pictures and videos.

  • How can I create a bootable for XP home CD

    How can I create a bootable for XP home CD?

    If by chance you reinstall xp sp2 via cd, you can create a bootable cd of xp sp3 via a method called "slipstreaming".

    It is relatively easy and requires files sp2 from your cd to merge with the update to sp3 from microsoft, and then make an iso to burn it to a cd.

  • How can I change an icon for the device in Windows 7?

    How can I change an icon for the device in Windows 7?

    In 'Control Panel\Devices and printers' I want to change the icon of a device that there are listed.

    Hi Dave Tavres

    I'm afraid to say that you would not be able to change this icon.
    This icon is provided by the hardware manufacturer, and is included in the drivers and architecture has no Windows allows to change this information.
    However, you can use the third party applications to change. Use your favorite search engine to find on the Internet.

    Important note: This response contains a reference to third party World Wide Web site. Microsoft provides this information as a convenience to you. Microsoft does not control these sites and no has not tested any software or information found on these sites; Therefore, Microsoft cannot make any approach to quality, security or the ability of a software or information that are there. There are the dangers inherent in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.

    It will be useful.

    Thank you, and in what concerns:
    Shekhar S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How can I create extensible components for re-use?

    How can I create a button that stretches (such as the scale-9) with the text label? I create all of my graphics in illustrator rather than photoshop to get real FXG markup instead of embed all images?

    This has been addressed in the FAQ.

    Please see if the discussion he answer your question.

    -Bear

  • How to force the format landscape for mobile devices (phone & pad)?

    Hello, I am designing a new Web page in muse. It will be necessary for this layout, view the page in landscape format (mobile / ipad & iphone).  is there an opinion to force the format landscape for mobile devices? whereas even if the device is in portrait format, the site will be displayed in landscape format?  support told me that I will have to add the code. could you tell me the code and how do I insert this to my page? Thanks for your help

    This might help you:

    fixed vertical layout for mobile

  • How can I create a shortcut for the recycling bin in my office?

    Original title: Recycle bin shortcut.

    Anyone know how I can create a shortcut for the recycling bin in my office context menu (context menu)?

    Sorry Manu B G, but I think I understand what he wants exactly. This isn't a desktop shortcut but a shortcut context Menu. He wants a right-click on any empty space in the office and click Recycler Bin shortcut in the menu to go to the basket. Any way to do it?

  • How can I create dynamic events for a group/list?

    Hey,.
    ATM I'm programming request a bit where I add items to my center pane.

    Simpyfied I got:

    -Center pane: here are the items that appear on right click in the lower pane. This component must serve something like a playground where you can drag and drop and associate items in the bottom pane
    -Low component: here, I got approximately 180 items which are quite equal. It's smth like a menu of items that you can use. I realized the java classes extended from a parent with v.f. dispute class.

    What I want:
    I want to create an event handler for EACH of the items 'menu' dynamically. Just sth like:
        for (int i = 0; i < basic_menu_list.size(); i++)
        {
          final Element el = hbox_bottom.getChildren().get(i);
          hbox_bottom.getChildren().get(i).setOnMouseClicked(new EventHandler<MouseEvent>()
          {
    
            public void handle(MouseEvent event)
            {
              if (event.isSecondaryButtonDown())
              {
                playground.add(el);
                redrawPlayground();
              }
            }
    
          });
        }
    But as I expected, it does not work...

    Now my question:
    How can I solve this problem? Y at - it no option to listen to all the elements of a group without hard-coding every single listener?

    Thanks for your help,
    Martin

    Hello user,.

    Why you expected you it wouldn't work?
    You have an example with the 'transition' apply on a bunch of circles in the Getting Started with JavaFx (http://download.oracle.com/javafx/2.0/get_started/jfxpub-get_started.htm)

    Here is a class of the basic example...

    import javafx.application.Application;
    
    import javafx.event.EventHandler;
    
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.TextBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.Pane;
    import javafx.scene.layout.VBox;
    
    import javafx.stage.Stage;
    
    public class HelloWorld extends Application {
    
        //~ ----------------------------------------------------------------------------------------------------------------
        //~ Methods
        //~ ----------------------------------------------------------------------------------------------------------------
    
        public static void main(String[] args) {
            // Entry point
            Application.launch(args);
        }
    
        @Override
        public void start(Stage mainStage) throws Exception {
    
            Pane pane = new Pane();
            Scene scene = new Scene(pane, 200, 200);
    
            VBox vBox = new VBox();
            TextBox input1 = new TextBox();
            TextBox input2 = new TextBox();
            vBox.getChildren().addAll(input1, input2);
    
            for (Node input : vBox.getChildren()) {
                input.setOnMouseClicked(new EventHandler() {
                        public void handle(MouseEvent event) {
                            System.out.println("test click");
                        }
                    });
            }
    
            pane.getChildren().add(vBox);
            mainStage.setScene(scene);
            mainStage.setVisible(true);
        }
    }
    

    Niculaiu

  • How can I create friendly URLS for my meetings?

    I run an online meeting using Adobe connect and want to create a friendly URL for example: companyname.adobeconnect.com/meetingtitle instead of all the numbers and letters! How can I do this? Is this possible?

    The option for the custom URL is available in the first stage of the meeting Wizard (Variant 2). Once the meeting room is created the URL CANNOT be change, and a new room must be created to have a different URL.

    For example, to create a new room and give him the desired URL extension!

  • How can I create a tree for a flex definition tab?

    I have several tabs in my content tree and I want to show the user specific tabs to specific roles.

    The problem is, for example, the active product is the cell subtype and sub-type tablets and I want to create a tab to display a few cell phones to a user with the role A and I want to create a tab to display a few tablets to a user with the role of B.

    Thank you for your help.

    I ve found I can only create treetabs for parents to flex and not definition of flex.

    Solved my problem

  • How can I create a redirect for a mobile site

    I want to get some opinions on this. I want to be able to when someone with a smart phone lands on the site, they have the possibility to view the full site or mobile.

    What is an advanced function? Is JS involved? I can easily do that in Muse or whatever I need to set up on a server?

    Thank you.

    Hello

    You can create a page for the site having options to access the mobile site or office.

    Then create links to the homepages of the desktop version and mobile on this page. You can create links through the hyperlink section.

    Also, you should uncheck "Redirect Office" on the file--> Site properties for the layout of the phone so that if the site is open on the mobile device, it shows only the first page office and not available phone directly.

    Kind regards

    Neha

  • How can I create legends customized for each image (large) target displayed with the widget to the Gallery?

    Greetings!

    I'm having any joy with the thumbnails Gallery - with the exception of a customization widget, I would like to make.

    I would like to have descriptive legends custom unique each 'target' (large image) image displayed. I can see the legend box personalized, move, modify, etc, but this is fixed for all images in the gallery.

    How do I change each caption for each image of the target?

    Thank you very much

    JL

    Assuming you are talking "Vignettes" under "Slide shows" widget in the widget library, simply drag the widget on a page to insert it. Once inserted, make sure you have legends in reverse by clicking the widget inserted on the page, and then on the small blue arrow top right of the widget that appears once the widget itself is selected, and check the box called "Legends", this will add captions [Lorem Ipsum] to each photo, you can then at this point click or double-click the text "Lorem" on each photo and that you want it to be. I hope this helps.

  • How can I create a menu drop-down list dynamics that controls two separate drop-down lists?

    Hello

    I could use help decipher how to control 2 separate drop-down lists ('b' and 'c') through the value selected in the main drop-down menu (that is, 'a').

    My script worked perfectly to control another menu drop down, however I can't seem to properly control the third zone.

    In my example below, what I'm trying to do is control 'Method - external' and 'Department - external', through my gout primary to the bottom of the list. The external 'method -' drop-down list works fine, it is the third 'Department - external' that I fight with.

    For example, if 'Theft' is chosen in the first drop-down menu, I want 'Method - external' to display the series points and "Department - external" to display a different set of items. If 'Cyber Crime' is selected in the main menu down, then the external 'method' - set items will change and the external "Department -" will indicate N/A.

    With the following script - no matter what happens if I choose 'Flight' or 'Cyber Crime' in the first menu drop down, 'Cyber Crime' n/d game elements are displayed in the external "Department -" drop-down.

    I apologize if this is hard to follow - it is certainly difficult to explain. I hope that my question came through.

    Here's my current script

    Switch (event.value) {}

    case 'flight ':

    this.getField("Method-External").setItems (["","grab and run", "shopping cart/basket Walk Out", "Possession", "Consumption", "Other"]);

    break;

    this.getField("Department-External").setItems (["","Agro", "Automobile", "Bakery", "Building materials", "Chemical", "Cleaning supplies", "Candy", "Dairy products", "Deli/Bistro", "ELECTRIC", "Electronics", "Farm equipment", "Fashion", "Feed", "Fertilizer"]);

    break;

    cases of "fraud":

    this.getField("Method-External").setItems (["", "credit card", "debit card", "Check", "Coupon", "Counterfeit", "Merchandise Return", "Price Switching", "Self Check-out", "Provider", "Other"]);

    this.getField("Department-External").setItems (["", "s/o"]);

    break;

    case 'flight ':

    this.getField("Method-External").setItems (["", 'threat of concealed weapon', 'Threat from weapon', "Verbal threats", "Acts of aggression", "Other"]);

    break;

    case 'exit and enter:

    this.getField("Method-External").setItems (["","Smash and Grab - vehicles", "Smash and Grab - pedestrian", "forced entry", "Unauthorized Keyed", "Other"]);

    break;

    case 'mischief ':

    this.getField("Method-External").setItems (["","graffiti", "Damage", "product a manipulation", "Other"]);

    break;

    case "Cyber Crime":

    this.getField("Method-External").setItems (["","Malware (Virus)", "Phishing", "Others" "]);

    break;

    this.getField("Department-External").setItems (["", "s/o"]);

    break;

    }

    Thank you

    You have a few break statements that should not be there. Try this:

    Switch (event.value) {}

    case 'flight ':

    this.getField("Method-External").setItems (["","grab and run", "shopping cart/basket Walk Out", "Possession", "Consumption", "Other"]);

    this.getField("Department-External").setItems (["","Agro", "Automobile", "Bakery", "Building materials", "Chemical", "Cleaning supplies", "Candy", "Dairy products", "Deli/Bistro", "ELECTRIC", "Electronics", "Farm equipment", "Fashion", "Feed", "Fertilizer"]);

    break;

    cases of "fraud":

    this.getField("Method-External").setItems (["", "credit card", "debit card", "Check", "Coupon", "Counterfeit", "Merchandise Return", "Price Switching", "Self Check-out", "Provider", "Other"]);

    this.getField("Department-External").setItems (["", "s/o"]);

    break;

    case 'flight ':

    this.getField("Method-External").setItems (["", 'threat of concealed weapon', 'Threat from weapon', "Verbal threats", "Acts of aggression", "Other"]);

    break;

    case 'exit and enter:

    this.getField("Method-External").setItems (["","Smash and Grab - vehicles", "Smash and Grab - pedestrian", "forced entry", "Unauthorized Keyed", "Other"]);

    break;

    case 'mischief ':

    this.getField("Method-External").setItems (["","graffiti", "Damage", "product a manipulation", "Other"]);

    break;

    case "Cyber Crime":

    this.getField("Method-External").setItems (["","Malware (Virus)", "Phishing", "Others" "]);

    this.getField("Department-External").setItems (["", "s/o"]);

    break;

    }

  • How can I create multiple fronts for a single diagram?

    Hello

    I developed a VI with several controls and indicators that should run on computers with a screen from 800 x 600 to 1680 x 1050 resolutions. The problem I have is that the façade don't is not properly for this range of resolutions by checking the options in 'Properties of the VI' option. Is there a way to create multiple panels before in various sizes for my diagram and select the façade appropriate in accordance with the resolution of the screen programmatically?

    See the attached Zip file.

    I have two different facades.  Either one open and run it.  They call MainCode.vi that takes the references which is past and register for events.  From there on, he does all the work of the code that you would put in your façade .vi.

    In this way each façade can be arranged however you want for each screen resolution.

  • How can I create new partition for dual boot (Windows 7/Ubuntu)?

    My Z580 came with 4 primary partitions: the Windows boot partition; Windows OS & data (C drive); a "Lenovo" partition which seems to have the drivers and software pre-installed (drive D). and an OEM partition that is used for key recovery.

    I want to create a dual boot system, as if I had on my old laptop, so I guess I need to delete one of the existing partitions and create an extended partition. The best candidate seems to be the 'Lenovo' partition with the drivers and applications. Can I backup the data on this partition and transfer it to the C drive... or put it on a new logical partition?

    Alternatively, it would be preferable to save the OEM DVD recovery partition, and then delete and create a new extended partition? I guess that means abandon OKR, but I'd still be able to recover Windows of DVDs (?).

    I would appreciate anyone's help. I am far from being an expert or computer whizz, so if you can help, please keep it simple!

    In fact, you can get if you only change the size of the D: drive. I guess that your D: drive occupies about 25 GB. You can delete this partition and shrink the C: drive as 100 GB (or any size you like) and you can create a new D: drive. This way you can use OneKey Recovery and install the second OS on a larger partition and yet once again, I suggest you create Factory Default disc before you do all this

Maybe you are looking for

  • my sound of dv4 - 2153cl HP Pavilion went flat

    I use Win7 64 bit. Recently, the sound on my HP Pavilion dv4 - 2153cl went from HiFi low - fi.  Then, I looked at the driver.  Some how go the driver set to the standard MS aound driver.  I've updated to IDT HiDef audio Codec.  The sound is always th

  • Click the Start button

    Please can you help me? After you click the Start button, I have can then see all my programms.  What this means if 1 program islite up at orange, after I've just updated the program in question?

  • HP Stream: How to reset the password of windows 10 HP flow

    I have a laptop HP Stream and the person I got it from is deceased and I do not know the password for windows. He has just upgraded to windows 10.  Can someone please?  There is nowhere that I see to reset the password.

  • Problems with TSST corp CDDVDW TS-H653Z

    MY TSST corp CDDVDW TS-H653Z does not recognize CDs and recordable DVDs. According to Windows, the latest version of the driver is installed. Any suggestion? Thank you.

  • How to change a URL

    I have a site that has been upgraded and I need to change the URL. I don't want to delete it because it's been paid for a year, but the URL for the business has changed. I see how to change the subdomain, but not the main URL.