@mrjyn
April 21, 2011
Charlene DALLAS Tilton C'est la...Ouch TONEDEAF!
April 20, 2011
Punk’s Not Dead— DVD
Punk’s Not Dead—And It’ll Soon Be On DVD
April 19, 2011 4:48 pm
A trip down memory lane today had me thinking about punk and grunge in the early nineties. Following the spate of designer departures, we at Style.com were remembering one of the nineties’ most trumpeted (after the fact, at least) layoffs: Marc Jacobs’ firing from Perry Ellis, following his grunge-inspired Spring ‘93 collection. Hindsight’s 20/20: Today, Jacobs is near-untouchable, and that particular collection has gone down in history (or is it infamy?) as one with enduring appeal. Of course, as much credit as Jacobs deserves, he had a little help. I’m thinking of his friends in the actual grunge scene at the time, the ones whose thrifted-or-lifted, tattered-and-layered sensibility helped refine his vision. People like Sonic Youth’s Kim Gordon (above, with Courtney Love) and Thurston Moore—longtime friends of Jacobs—as well as legendary grungesters like Kurt Cobain and J Mascis. They all make up the cast—if you can call it that—of the groundbreaking music doc 1991: The Year Punk Broke, which has, somehow, never made it onto DVD. That is, until this coming fall. To celebrate the 20th anniversary of Dave Markey’s documentary, about Sonic Youth and Nirvana’s 1991 European tour, the film will finally make its way to DVD in September (with extras including commentary by Markey and Moore and a 42-minute film of SY/Nirvana performances). It’s about time. 1991 has long been VHS-only, sending appreciators without VCRs (myself included) to YouTube for our fix. Until the DVD does hit stores this fall, that’s still your best bet, and where you’ll find SY’s performance of “Teenage Riot” from the movie or Gordon and the gang mugging for TV and fooling around (”You promised me there’d be no interesting people in the front row!”). Twenty years on, nineties style is having something of a moment. Once today’s designers get their Netflix queues around this one, can a New Grunge look be far behind?
—Matthew Schneier
MORE Dogmeat »
you think this one's annoying...█ D
█ D
MORE Dogmeat »
April 19, 2011
#CSS3 尝鲜(二)
CSS3尝鲜(二):用CSS设置多个背景、背景渐变、指定背景大小 | ||||||||||||||||||||||||||||||
作者:孟宪会 发布日期:2010-01-19 11:08:20 | ||||||||||||||||||||||||||||||
CSS3规范中对背景这一部分,新加入了一些令人兴奋的功能,如可以设置多个背景图片、可以指定背景大小、设置背景渐变等功能。CSS3规范中定义的背景属性有:
CSS 代码
Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->background:url(http://dotnet.aspx.cc/Book/Images/CSS1_s.jpg) 0 0 no-repeat, url(http://dotnet.aspx.cc/Book/Images/CSS2_s.jpg) 200px 0 no-repeat, url("http://dotnet.aspx.cc/Book/Images/ASPNET20Book1_s.jpg") 400px 201px no-repeat;
CSS 代码
Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->background-image:url("http://dotnet.aspx.cc/Book/Images/CSS1_s.jpg"),url("http://dotnet.aspx.cc/Book/Images/CSS2_s.jpg"),url("http://dotnet.aspx.cc/Book/Images/ASPNET20Book1_s.jpg"); background-repeat: no-repeat, no-repeat, no-repeat; background-position: 0 0, 200px 0, 400px 201px;
CSS 代码
Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->background-image:-moz-linear-gradient(left, rgba(0, 255, 0, 1), rgba(255, 0, 0, 0)), url("http://dotnet.aspx.cc/Book/Images/CSS2_s.jpg");
CSS 代码
Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->background-image:url("http://dotnet.aspx.cc/Book/Images/CSS2_s.jpg"), -moz-linear-gradient(left, rgba(0, 255, 0, 1), rgba(255, 0, 0, 0)); 例子的全部源代码如下:
以上例子的最终显示效果如下图所示(如果图片不能显示,请直接点击链接查看)。查看本例子的效果需要Firefox 3.6,Chrime,Safari4的浏览器。其中 Firefox 3.6可以看到全部的效果。 |