gpt4 book ai didi

javascript - 单击时动画翻转 div

转载 作者:行者123 更新时间:2023-11-28 07:07:44 26 4
gpt4 key购买 nike

每当我点击 div 时,我都会尝试让它们翻转。我不知道为什么它不起作用。请帮忙。

这是此代码的演示。 http://langbook.co/testicles-1-2-flashcards/

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#flip3D{ width:240px; height:200px; margin:10px; float:left; }
#flip3D > #front{
position:absolute;
transform: perspective( 600px ) rotateY( 0deg );
background:#FC0; width:240px; height:200px; border-radius: 7px;
backface-visibility: hidden;
transition: transform .5s linear 0s;}
#flip3D > #back{
position:absolute;
transform: perspective( 600px ) rotateY( 180deg );
background: #80BFFF; width:240px; height:200px; border-radius: 7px;
backface-visibility: hidden;
transition: transform .5s linear 0s;}
</style>
<script>
function flip(el){
el.children[1].style.transform = "perspective(600px) rotateY(-180deg)";
el.children[0].style.transform = "perspective(600px) rotateY(0deg)";}
var vlib = document.getElementById('front');
vlib.addEventListener(click, flip(el));
</script>
<title>Flashcards</title>
</head>
<body>
<div id="flip3D">
<div id="back">Box - Back</div>
<div id="front">Box - Front </div>
</div>
</body>
</html>

最佳答案

首先,我会将你的 JS 移动到页面末尾。

您似乎还想在 #flip3D 上调用 Flip(),因为您正在尝试访问它的子元素,如下所示:

var vlib = document.getElementById('flip3D');
vlib.addEventListener('click', flip(vlib));

要翻转回来,您只需将对象的状态保留在属性中即可知道它位于哪一侧。另请注意,flip(vlib) 将立即被调用;要等待点击事件,您需要传递对该函数的引用:

vlib.addEventListener('click', flip);

似乎有效:JSFiddle

关于javascript - 单击时动画翻转 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31566756/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com