所以我們可以說我有這樣的事情:DIV消逝上點擊顯示其他分區
body {
background: #ffffff;
}
.table {
display: table;
margin: 0px auto;
max-width: 400px
}
.row {
display: table-row;
width: 100%
}
.td1,
.td2,
.td3 {
display: table-cell;
border: 2px #aaaaaa solid;
padding: 15px;
background: #eeeeee;
font-size: 18px;
color: #000000;
width: 100%;
}
.td2,
.td3 {
border-top: none;
color: red;
}
<body>
<div class="table">
<div class="row">
<div class="td1">Here is some random text</div>
</div>
<div class="row">
<div class="td2">This is the text you see at first</div>
</div>
<div class="row">
<div class="td3">This is the text below the other div</div>
</div>
</div>
現在,我想這樣做是有TD2文字時顯示你首先看到的頁面,但不是td3。然後當點擊td2 div時,它會淡出或向上滑動,然後顯示td3 div和文本。在這種特殊情況下,div在重新點擊時不必返回。這就像一個「單程票」。點擊,它永遠消失了。
什麼可能是最簡單的方法來做到這一點?
你已經做了嗎?請分享您的代碼 –
請向我們展示您嘗試過並且無法使用的內容? – kukkuz