小编Kur*_*UXD的帖子

制作像苹果网站上的那些动画

我想在苹果网站上制作动画:

http://www.apple.com/iphone/

或者如果以上链接不起作用http://www.youtube.com/watch?v=05WEIWZvw2Q

是否有一些专门用于此类工作的高效框架(例如jquery插件)?

jquery animation transitions

5
推荐指数
0
解决办法
6170
查看次数

嵌套div:我如何获得重叠边框?

下图显示了所需的结果:

Desider结果

在我到达的地方下面position: relative:

<div class="tags-container">
    <div class="tag">Pizza</div>
    <div class="tag">Spaghetti</div>
    <div class="tag">Mandolino</div>
    <div class="tag">Pizza</div>
    <div class="tag">Spaghetti</div>
    <div class="tag">Mandolino</div>
    <div style="clear: both"></div>
</div>
Run Code Online (Sandbox Code Playgroud)
.tags-container {   
    border: 1px solid #ff0000;
    width: 300px;
}
.tag {
    float: left;
    position: relative;
    top: -1px;
    left: -1px;
    padding: 5px;
    border: 1px solid #ff0000;
}
Run Code Online (Sandbox Code Playgroud)

http://www.lucagiorcelli.it/test/testing-borders.html

html css

4
推荐指数
1
解决办法
1010
查看次数

标签 统计

animation ×1

css ×1

html ×1

jquery ×1

transitions ×1