如何将图像淡出并淡化另一张有文字的图像?

时间:2016-04-09 01:22:59

标签: css tumblr fadein fadeout

我在编码方面相对较新,而且我试图制作它,以便一个图像淡化为不同的图像,并且该图像上面有文字。

我使用的是Tumblr,所以只支持PHP-5的MVC我很确定。 而这就是我到目前为止所拥有的:



pub struct CowRow {
    time: u64,
}

pub fn agg1() -> Box<FnMut(&CowRow) -> u64> {
    let mut res = 0;
    Box::new(move |r| { res += r.time; res })
}

fn main() {
    let mut c = agg1();
    let moo = CowRow { time: 2 };
    println!("{:?}", c(&moo));
    println!("{:?}", c(&moo));
    println!("{:?}", c(&moo));
}
&#13;
&#13;
&#13;

0 个答案:

没有答案
相关问题