下载magento

时间:2016-10-18 15:00:51

标签: javascript html css magento

请允许任何人帮助使用magento商店定位器的下拉代码,这看起来与我想要实现的相似:

http://www.watchrepublic.co.za/store-locator.html

谢谢。

2 个答案:

答案 0 :(得分:0)

我对Magento没有经验,但经过一番谷歌搜索后,我遇到了drop down menu extension

答案 1 :(得分:0)

好的,我为此制作了一个自定义模块。看看这个就像你想要制作的菜单一样提供前端文件。

http://alanstorm.com/magento-2-frontend-files-serving/

创建所有路由,然后在default.xml

中调用Menu
 <Button Grid.Row="1"
                    Grid.Column="2"
                    HorizontalAlignment="Right"
                    VerticalAlignment="Top"
                    Command="{Binding }"
                    Content="Bind your Selected Item from VM">
            <Button.Style>
                <Style TargetType="Button">
                    <Setter Property="Template">
                        <Setter.Value>
                            <ControlTemplate TargetType="Button">
                                <TextBlock TextDecorations="Underline">
                                        <ContentPresenter />
                                </TextBlock>
                            </ControlTemplate>
                        </Setter.Value>
                    </Setter>
                    <Setter Property="Foreground" Value="Red" />
                    <Style.Triggers>
                        <Trigger Property="IsMouseOver" Value="true">
                            <Setter Property="Foreground" Value="Blue" />
                        </Trigger>
                    </Style.Triggers>
                </Style>
            </Button.Style>
        </Button>