我真的可以使用一些css帮助。是否可以使用css交换2个单词的顺序,不使用:after? (前“Hello World”应成为“World Hello”)
我无法使用的具体原因:事实上工作之后,是div快照实用程序html2canvas.js不采用:before或:after in account,因此解决方法。
非常感谢任何帮助。
尼科
答案 0 :(得分:0)
您可以使用CSS z-index堆叠句子并使用关键帧来实现交换效果。 (参见code-snippet)。
之后,您需要通过按钮或时间来决定如何/何时致电更改。打电话给你可能需要一些javascript。
如果您正在寻找真正取代HTML div中文本的解决方案,那么您需要通过javascript解决这个问题。
.div-1 {
position: absolute;
z-index: 1;
background-color: white;
width: 100px;
height: 20px;
margin: 0px 0px 0px 20px;
}
.div-2 {
position: relative;
z-index: 2;
background-color: white;
width: 100px;
height: 20px;
margin: 0px 0px 0px 20px;
animation-name: swap;
animation-duration: 5s;
animation-delay: 0;
}
@keyframes swap {
from {
opacity: 1;
}
to {
opacity: 0;
}
}

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="wrapper">
<div class="content">
<div class="div-1">Hello World</div>
<div class="div-2">World Hello</div>
</div>
</div>
</body>
</html>
&#13;