Quantcast
Channel: Adobe Community : Popular Discussions - Archived Discussions
Viewing all articles
Browse latest Browse all 21156

-webkit-background-size

$
0
0

Hello,

 

Just alerting to the powers that be that I think that there may be a bug here with "-webkit-background-size;" not being fully supported

 

I'm trying to port a web based app I made into Adobe Air which uses html5/css3. It works fine in chrome but in adobe air it doesn't seem to work

 

The app involves animations using keyframes and animations to animate a -webkit-background-size in css3

 

can anyone confirm this is true? or Am I mis interpreting adobe air's css3 support?

 

I'm using the SDK 3.1

 

e.g

 

 

#equalizer {          background: -webkit-gradient(linear,top, bottom, color-stop(0%,#ff0000), color-stop(100%,#ff0000));          -webkit-background-size:100%;          -webkit-animation-direction:alternate;          -webkit-animation-iteration-count: infinite;          -webkit-animation-timing-function: cubic-bezier(1, 2, 3, 4);          width:100%;          height:800px;
}
.half_empty {          -webkit-background-size:183px 20%;
}
#equalizer.half_empty {          -webkit-animation-name: equalizer-animation-1;          -webkit-animation-duration: 0.5s;
}
@-webkit-keyframes equalizer-animation-1 {
 from {          -webkit-background-size: 100% 0%;
}
to {          -webkit-background-size: 100% 20%;
}
}

Viewing all articles
Browse latest Browse all 21156

Trending Articles