2014-02-26 24 views
0

我试图弄清楚如何获得第二个menustyling上一个WordPress网站,我使用fullpage.js上。如何将不同的菜单样式应用到首页?

我有一个自定义的步行者和菜单作品anchorlinks幻灯片。我试图弄清楚如何改变幻灯片的菜单样式,所以首页有它自己的。

网站:http://www.svenssonsbild.se/Svenssonsbild2

循环:

<?php 

if (($locations = get_nav_menu_locations()) && $locations['slides']) { 

    $menu = wp_get_nav_menu_object($locations['slides']); 
    $menu_items = wp_get_nav_menu_items($menu->term_id); 
    $pageID = array(); 

    foreach($menu_items as $item) { 
     if($item->object == 'page') 
     $pageID[] = $item->object_id; 

    } 
    query_posts(array('post_type' => 'page','post__in' => $pageID, 'posts_per_page' =>  
    count($pageID), 'orderby' => 'post__in')); 

} 


while(have_posts()) : the_post(); 

?> 


<!--  <div id="<?php echo $post->post_name;?>" class="section"> --> 

<div id="pageSlide-<?php echo $post->post_name;?>" class="section" data-anchor="<?php echo $post->post_name;?>"> 

沃克:

<?php 
class description_walker extends Walker_Nav_Menu { 

    function start_el(&$output, $item, $depth, $args) { 
     global $wp_query; 
     $indent  = ($depth)?str_repeat("\t", $depth):''; 
     $class_names = $value = ''; 
     $classes  = empty($item->classes)?array():(array) $item->classes; 
     $class_names = join(' ', apply_filters('nav_menu_css_class', array_filter($classes), $item)); 
     $class_names = ' class="'.esc_attr($class_names).'"'; 
     $output  .= $indent.'<li id="menu-item-'.$item->ID.'"'.$value.$class_names.'>'; 
     $attributes = !empty($item->attr_title)?' title="'.esc_attr($item->attr_title).'"':''; 
     $attributes .= !empty($item->target)?' target="'.esc_attr($item->target).'"':''; 
     $attributes .= !empty($item->xfn)?' rel="'.esc_attr($item->xfn).'"':''; 
     if($item->object == 'page') { 
      $varpost = get_post($item->object_id); 
      if(is_home()) { 
       $attributes .= ' href="#'.$varpost->post_name.'"'; 
      } 
      else { 
       $attributes .= ' href="'.home_url().'/#'.$varpost->post_name.'"'; 
      } 
     } 
     else 
      $attributes .= !empty($item->url)?' href="'.esc_attr($item->url).'"':''; 
     $item_output  = $args->before; 
     $item_output .= '<a'.$attributes.'>'; 
     $item_output .= $args->link_before.apply_filters('the_title', $item->title, $item->ID); 
     $item_output .= $args->link_after; 
     $item_output .= '</a>'; 
     $item_output .= $args->after; 
     $output   .= apply_filters('walker_nav_menu_start_el', $item_output, $item, $depth, $args); 
    } 
} 
?> 

回答

3

如果你只是想应用不同风格的第一部分(不滑动,滑道是水平的),你可能想通过做插件回调,如afterLoadonLeave

喜欢的东西:

$.fn.fullpage({ 
    slidesColor: ['red', 'blue'], 
    afterLoad: function (anchorLink, index) { 
     //if it is not in the 1st section, we apply sectionMenu class 
     if (index !=1) { 
      $('.demo').addClass('sectionMenu'); 
     } 

     //otherwise, we remove it 
     else{ 
      $('.demo').removeClass('sectionMenu'); 
     } 
    } 
}); 

Live example

+0

非常感谢Alvaro!这工作完美!最后的任务是找出如何将幻灯片添加到循环中,然后脚本是完美的!再次感谢!编辑:我弄明白了,编辑我的回应,对不起。 – user2059370

+0

是的。 'demo'元素假设是你的菜单。 – Alvaro

+0

非常有用,欢呼!如果你启用了css3:true,那么你需要指定固定的元素来工作(像这个http://jsfiddle.net/ut8c6/)让我困惑了一秒钟! – patrickzdb

1

使用主页上的WordPress的体类

body标签将有一个班的家像这样<body class="home">

所以在主页上的目标菜单,如下所示:

.home .your-menu-selector 
+0

感谢您的答复,但由于使用不工作的脚本i'm。它是#标题部分,我想申请到幻灯片,但它不起作用。不过谢谢。 – user2059370

相关问题