- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我一直在研究如何像 Google 卡片一样创建翻转和增长效果(点击任意卡片):
http://www.google.com/landing/now/#cards/restaurant-reservations
我找到的所有资源都是关于翻转一张正面和背面大小相同的卡片,但这不是我要找的。
我们将不胜感激任何反馈。
最佳答案
这里发布的两个答案都是很好的通用 css flippers,但它们没有解决问题的核心,即“谷歌是如何做到的?”。问题是谷歌缩小并因此混淆了他们的代码,这使得很难准确地说出发生了什么,但使用 DOM 检查器你可以获得一个非常基本的想法。这是摘要:
演示: http://jsfiddle.net/jwhazel/AaU6v/11/
(在 Chrome 中开发,其他浏览器可能需要一些 vendor 前缀)
HTML
<div class="cards">Generic Tile Card</div>
<div id="cardClone">
<div id="cloneFront">cardclone front</div>
<div id="cloneBack">cardclone back</div>
</div>
CSS
body {
position: relative;
font-family:Helvetica, Arial, Sans-serif;
text-align:center;
}
.cards {
margin:30px;
width:200px;
height:200px;
background-color:#59A3FF;
cursor:pointer;
display:inline-block;
overflow:hidden;
}
img {
display:block;
width:80%;
height:auto;
margin:0 auto
}
#cardClone {
position:fixed;
display:none;
margin:30px;
width:200px;
height:200px;
-webkit-transition:.6s;
transition:.6s;
-webkit-transform-style::preserve-3d;
transform-style:preserve-3d;
z-index:99;
perspective: 1000px;
-webkit-perspective: 1000px;
}
#cloneFront, #cloneBack {
backface-visibility: hidden;
width:100%;
height:100%;
position:absolute;
-webkit-transition:.6s;
transition:.6s;
overflow:hidden;
}
#cloneFront {
z-index:100;
background-color:#59A3FF;
transform: translatez(0);
}
#cloneBack {
transform:rotateY(-180deg);
z-index:101;
background-color:#aaa;
}
Javascript
//Cache the clone since we have to select it a couple of times
$clone = $('#cardClone');
//Set a global for the card we just clicked so we can track it
$lastelement = "";
//Set up an object for last clicked element so we know where to return to on collapse
lastelement = {
'top': 0,
'left': 0,
'width': 0,
'height': 0
};
//Set a flag to determine the current flip state of our clone
cloneflipped = false;
//Bind a handler to the clone so we can detect when the transition is done
$('#cardClone').on("transitionend", function (e) {
if (e.target === e.currentTarget) {
if (e.originalEvent.propertyName == 'top') {
//Toggle the clone state
cloneflipped = !cloneflipped;
//Detect if our clone has returned to the original position and then hide it
if (!cloneflipped) {
$($lastelement).css('opacity', 1);
$($clone).hide();
} else {
//Need to dynamically alter contents of the clone rear AFTER it animates? Do it here
//$('#cloneBack').html('hi');
}
}
}
});
$(".cards").click(function () {
if (!cloneflipped) {
//Cache clicked card
$lastelement = $(this);
//Store position of this element for the return trip
//[hack: subtract 30 due to the margin of .cards in this demo]
var offset = $lastelement.offset();
lastelement.top = offset.top - 30 - $(document).scrollTop();
lastelement.left = offset.left - 30;
lastelement.width = $lastelement.width();
lastelement.height = $lastelement.height();
//BONUS: lets check to see if the clicked card is further to the left or the right of the screen
//This way we can make the animation rotate inwards toward the center, google doesn't do this
var rotatefront = "rotateY(180deg)";
var rotateback = "rotateY(0deg)";
if ((lastelement.left + lastelement.width / 2) > $(window).width() / 2) {
rotatefront = "rotateY(-180deg)";
rotateback = "rotateY(-360deg)";
}
//Copy contents of the clicked card into the clones front card
$clone.find('#cloneFront').html($lastelement.html());
//Show the clone on top of the clicked card and hide the clicked card
//[hack: using opacity for hiding here, visibility:hidden has a weird lag in win chrome]
$clone.css({
'display': 'block',
'top': lastelement.top,
'left': lastelement.left
});
$lastelement.css('opacity', 0);
//Need to dynamically alter contents of the clone rear BEFORE it animates? Do it here
//$('#cloneBack').html('hi');
//Flip the card while centering it in the screen
//[hack: we have to wait for the clone to finish drawing before calling the transform so we put it in a 100 millisecond settimeout callback]
setTimeout(function () {
$clone.css({
'top': '40px',
'left': '40px',
'height': '400px',
'width': $(document).width() - 140 + 'px'
});
$clone.find('#cloneFront').css({
'transform': rotatefront
});
$clone.find('#cloneBack').css({
'transform': rotateback
});
}, 100);
} else {
$('body').click();
}
});
//If user clicks outside of the flipped card, return to default state
$('body').click(function (e) {
if (cloneflipped) {
if (e.target === e.currentTarget) {
//Reverse the animation
$clone.css({
'top': lastelement.top + 'px',
'left': lastelement.left + 'px',
'height': lastelement.height + 'px',
'width': lastelement.width + 'px'
});
$clone.find('#cloneFront').css({
'transform': 'rotateY(0deg)'
});
$clone.find('#cloneBack').css({
'transform': 'rotateY(-180deg)'
});
}
}
});
关于javascript - Google卡的 "Flip and Grow"效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24503882/
我正在尝试编写一个Android应用程序,它可以不断地在随机位置绘制圆圈。这已经在我的代码中完成了。我的下一个目标是慢慢地制作这些圆圈的动画,使它们“生长”到屏幕上。基本上将圆的半径从 0 增加到 3
有一个棘手的小问题:/我有一个绝对定位的 div,它没有宽度,因为内容是动态创建的。 在这个 div 中有另一个绝对定位的 div,同样没有宽度,因为内容是动态创建的。 在这个 div 中有两个动态创
我正在创建一个时间线,它的线上有圆圈表示不同的事件。当用户将鼠标悬停在圆圈上时,我想要一条线从圆圈中“长出”,最后是事件文本。有没有人对使用什么来使这种效果成为可能有任何建议。 Javascript?
初级程序员在这里。下面的代码似乎总是遇到一个错误,称为:“未分配正在释放的指针”,我不明白为什么。 结构包含动态数组,用于在读取文件后存储整数和字符串。此文件包含城市名称、高温和低温的列表。然后,在读
要解释正在发生的事情有点棘手。 http://easyuniv.com/staging/gonzaga/ 如果您访问我上面的站点,您可以看到当窗口水平收缩和扩展时背景图像如何移动。我希望做到这一点,无
我正在用 C++ 创建一个素数生成器,使用一个数组来存储我找到的素数,然后使用它们来检查势能。有没有办法在我的程序继续时“增加”我的阵列? 最佳答案 参见 std:vector。 http://new
我正在基于同一行上的两个列表构建导航。两个列表中的所有元素之间都应该有间距,但 25px最多。 flex-grow 的问题: 如果我使用 flex-grow,元素会变得大于它们自己的宽度 + 25px
我刚刚熟悉 Flex 框,当我将 flex-grow:1 应用于一组列时,它似乎使列高度均匀增长,但不是我的目标宽度。 如果我理解这一点,默认的 flex-direction 是“行”……所以理论上宽
我有两个使用 flex-grow 的“拆分”,如果只有一个存在则为 100%,如果两个都存在则为 50%/50%。问题是我希望此行为取决于 div.split 中内容的存在。 通过一些摆弄,我可以让它
HTML:
我有一个 ul 容器和 li 菜单项。容器是 100% 宽度,li 元素是父元素的 50% 宽度。 Parent 设置为显示 flex,flex 方向为 column。现在这些元素是 flex par
我试图让 views-cntnr 占用 views-cntnr 和 menubar div 未使用的任何空间。为此,我将 flex 显示设置为列方向。然后我将 views-cntnr 的 flex-g
我试图让 views-cntnr 占用 views-cntnr 和 menubar div 未使用的任何空间。为此,我将 flex 显示设置为列方向。然后我将 views-cntnr 的 flex-g
这个问题在这里已经有了答案: Targeting flex items on the last or specific row (10 个答案) 关闭 4 年前。 所以我有一个包含一些盒子的 fle
目前,我正在尝试列一个 list 。在适合我的“显示 flex 布局”并在所有浏览器上调整大小的左侧图像。我的“flex 增长布局”列表 1 用于图像,3 用于描述。没有图像,一切都很好,但是对于我的
我正在创建一个具有 2 列布局或 3 列布局的响应式网站。 我正在使用 flex-box,因为我想为它们设置顺序。 我希望方框能填满最大可用空间。 Flexbox 工作完美,除了图像不会按比例调整大小
我有一个像这样的简单页面 Header Content Footer Dialog CSS: main { display: flex; flex-direct
如果我有一个包含 2 个垂直 div 的固定高度 div,我希望第一个 div 是内容的高度,最多为父 div 的 80%,此时它的内容将在其余部分滚动它的。第二个 div 应该增长到父容器的其余部分
我想知道是什么定义了一个内存对象的开始地址是比对象的结束地址低还是高。例如: char buffer[10]; char* p = &buffer[0]; printf("%p\n",p); //0x
我有一段代码想在多线程中运行,但是当我增加要运行的线程数时,我并没有得到太多加速。在一个点之后,我遇到的线程越多,它就越糟糕,以至于比顺序运行更糟糕。 所以我想知道可能是什么问题,我想知道 Open
我是一名优秀的程序员,十分优秀!