0

这里有一个codepen:http: //codepen.io/saltcod/pen/ufiHr

我正在尝试设置菜单样式。我希望每个项目都有不同的背景不透明度——这部分是有效的。

我无法弄清楚的部分是如何在第 5 项之后重置不透明度。当循环到达第 6 项时,我希望不透明度回到第 1 项中的状态。

如果这没有任何意义,这里是一个屏幕:http ://cl.ly/image/0x3e350H0l0o

我基本上想改变不透明度五次,然后再从顶部开始。

JS:

var menuItems = $('li a');

menuItems.each(function(index, value){
  var index = index + 1;  
      startOpacity = .2 + index/10;
      counter = .05;
  $(this).css({'background-color': 'rgba(255,255,255,'+startOpacity+')'});
  $(this).append(" " + index);

});
4

1 回答 1

1

您可以借助模数运算符进行回收。

menuItems.each(function (index, value) {
    var index = index + 1, 
        startOpacity,
        counter, $this = $(this);

    startOpacity = .2 + (index % 5) / 10; //Here, you can give probably half the number of your menu items instead of 5
    counter = .05;

    $this.css({
        'background-color': 'rgba(255,255,255,' + startOpacity + ')'
    }).append(" " + index);

});

代码笔

于 2013-10-11T18:01:27.797 回答