带条件的条件条纹背景

时间:2016-10-24 12:36:20

标签: css background-color

我有一些DIV可以是5种颜色中的任何一种,具体取决于DIV设置的类别。如果它有多个类集,则优先确定使用哪种颜色。我想更改它,以便在设置了多个类时获得多个颜色。

现在,其中一部分是UI / UX透视图,因为条纹看起来很糟糕。如果您有任何建议,我会全力以赴 - 但仅凭这一点并不能让您获得认可。

另一部分是如何在技术上解决这个问题。我更喜欢纯粹用CSS做这个,我更喜欢解决方案来处理DIV背景颜色,但究竟是如何打开的。可以创建two-color stripes,并且可以创建multi-coloured backgrounds,但我不清楚如何以动态方式执行此操作而不是硬编码示例,具有...动态性?...通过元素类触发。

2 个答案:

答案 0 :(得分:1)

我想你可以使用http://www.colorzilla.com/gradient-editor/来获得类似的内容:

.one{
   background:#ff0000;  
 }

.one.two{
   background: -moz-linear-gradient(left, rgba(255,0,0,1) 0%, rgba(255,0,0,1) 50%, rgba(0,255,0,1) 50%, rgba(0,255,0,1) 50%, rgba(0,255,0,1) 100%); /* FF3.6-15 */
   background: -webkit-linear-gradient(left, rgba(255,0,0,1) 0%,rgba(255,0,0,1) 50%,rgba(0,255,0,1) 50%,rgba(0,255,0,1) 50%,rgba(0,255,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
   background: linear-gradient(to right, rgba(255,0,0,1) 0%,rgba(255,0,0,1) 50%,rgba(0,255,0,1) 50%,rgba(0,255,0,1) 50%,rgba(0,255,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#00ff00',GradientType=1 ); /* IE6-9*/ 
}

.one.two.three{
   background: rgb(255,0,0); /* Old browsers */
   background: -moz-linear-gradient(left, rgba(255,0,0,1) 0%, rgba(255,0,0,1) 33%, rgba(0,255,0,1) 33%, rgba(0,255,0,1) 33%, rgba(0,255,0,1) 66%, rgba(0,0,255,1) 66%, rgba(0,0,255,1) 66%); /* FF3.6-15 */
   background: -webkit-linear-gradient(left, rgba(255,0,0,1) 0%,rgba(255,0,0,1) 33%,rgba(0,255,0,1) 33%,rgba(0,255,0,1) 33%,rgba(0,255,0,1) 66%,rgba(0,0,255,1) 66%,rgba(0,0,255,1) 66%); /* Chrome10-25,Safari5.1-6 */
   background: linear-gradient(to right, rgba(255,0,0,1) 0%,rgba(255,0,0,1) 33%,rgba(0,255,0,1) 33%,rgba(0,255,0,1) 33%,rgba(0,255,0,1) 66%,rgba(0,0,255,1) 66%,rgba(0,0,255,1) 66%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#0000ff',GradientType=1 ); /* IE6-9 */  
} 

答案 1 :(得分:0)

你可以在那里使用nth-child选项,你可以指定1n,2n,3n等等



.container div {width:100px; color:#ffffff; padding: 5px;}
    .container :nth-child(1n){
        background: #F44336;
    }
    .container :nth-child(2n){
        background: #E91E63;
    }
    .container :nth-child(3n){
        background: #9C27B0;
    }
    .container :nth-child(4n){
        background: #673AB7;
    }
    .container :nth-child(5n){
        background: #009688;
    }

<div class="container">
    <div>1</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
    <div>1</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
    <div>1</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
    <div>1</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
</div>
&#13;
&#13;
&#13;