如何赋予数组的不同部分,不同的属性

时间:2019-07-03 08:57:26

标签: javascript arrays function colors attr

我想为数组的不同对象赋予不同的属性,例如颜色和大小。

我已经在代码的另一部分中对其进行了管理。我创建了一个新数组,并为具有相同名称的组提供了相同的颜色。但是现在我无法创建一个包含所有颜色的数组,因为我没有特定的对象。我希望所有小于1500的年份都是蓝色的。所有> 1500红色。

city

我没有任何错误,在最后一种方法中,显示的颜色是橙色。但是为什么蓝色和红色没有显示出来?

1 个答案:

答案 0 :(得分:0)

    body{
    	margin: auto;
    	padding: 0;
    	font-family: arial;
    }

    .wrapper{   
      width: 100%;
       border-bottom: 2px solid blue;

    }
    #head{
      width: 77%;
      overflow: hidden;
      margin: auto;  
    }

    .container{
    	width: 100%;
    }

    #head ul{
    	margin: 0;
    	padding: 0;
    	float: right;
    	padding-bottom: 10px;

    }
    #head ul li{
    	list-style: none;
    	display: inline-block;
    	font-size: 20px;
    	padding-left: 20px;

    }
    #head a{
    	text-decoration: none;
    	text-transform: uppercase;
    }

    #head header{
    	text-transform: uppercase;
    	font-weight: bold;
    	font-size: 30px;
    	margin-top: 10px;
    }

    #head .container header{
    	color: #0D1D6B;
    	text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
    }

    #head .container span{
    	color: #fff;	
    	text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
    }

}