我已经实现了一个可折叠的div,该div在单击“阅读更多”按钮时会扩展。一切正常。但是通过扩展按钮位置会出错。当卡未展开时,我希望按钮位于卡上按钮所在的相同位置。
这是我的代码
* {
font-family: verdana, sans-serif;
}
#more {
display: none;
}
.wrap-collabsible {
margin-bottom: 1.2rem 0;
margin-top: 40px;
}
input[type='checkbox'] {
display: none;
}
#myBtn {
display: block;
float: right;
font-weight: bold;
font-family: Verdana, sans-serif;
text-transform: uppercase;
text-align: center;
border: none;
padding: 1rem;
outline: none;
color: #A77B0E;
background: #FAE042;
cursor: pointer;
border-radius: 7px;
transition: all 0.25s ease-out;
}
#myBtn:hover {
color: #7C5A0B;
}
/* .lbl-toggle::before {
content: ' ';
display: inline-block;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid currentColor;
vertical-align: middle;
margin-right: .7rem;
transform: translateY(-2px);
transition: transform .2s ease-out;
} */
.toggle:checked+.lbl-toggle::before {
transform: rotate(90deg) translateX(-3px);
}
.collapsible-content {
max-height: 0px;
overflow: hidden;
transition: max-height .25s ease-in-out;
}
.toggle:checked+.lbl-toggle+.collapsible-content {
max-height: 350px;
}
.toggle:checked+.lbl-toggle {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.collapsible-content .content-inner {
background: rgba(250, 224, 66, .2);
border-bottom: 1px solid rgba(250, 224, 66, .45);
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
padding: .5rem 1rem;
}
.Add {
font-weight: bolder;
}
.wrapper {
padding: 0px 15px 0px 15px;
display: table-cell;
}
.box {
padding: 10px;
box-shadow: 5px 4px 9px 0px #d8d7d7;
border: 1px solid #eeee;
}
.inner-box {
width: 30%;
float: left;
display: table-cell;
}
.Text-box {
font-family: verdana, sans-serif;
margin-top: -16px;
}
.Add-text {
font-weight: bolder;
}
.text {
color: blue;
}
.img {
max-width: 88%;
height: auto;
}
#conditional-tag {
display: none;
}
<div Class="box">
<p class="Add" id="conditional-tag">No. 60, Jalan Pendamar Indah 1B, Taman Pendamar Indah, Pelabuhan Klang, Selangor </p>
<div class="inner-box">
<img src="house.jpg" class="img">
</div>
<div class="wrapper">
<p class="Text-box">
<p class="Add" id="hideOnClick">No. 60, Jalan Pendamar Indah 1B, Taman Pendamar Indah, Pelabuhan Klang, Selangor</p>
<p class="text">2 Storey Terrace House</p>
<p>Size : 1,860/1,302 sq.ft</p>
<p>Tenure : Freehold</p>
<p class="Add-text">RM37,8000</p>
<span id="dots">...</span>
<span id="more">
<!--p style="font-weight: bolder;">No. 60, Jalan Pendamar Indah 1B, Taman Pendamar Indah, Pelabuhan Klang, Selangor</p-->
<p class="text">2 Storey Terrace House</p>
<p>Size : 1,860/1,302 sq.ft</p>
<p>Tenure : Freehold</p>
<p class="Add-text">RM37,8000</p>
</span>
</p>
<button onclick="myFunction()" id="myBtn">Read more ></button>
<script>
function myFunction() {
var dots = document.getElementById("dots");
var moreText = document.getElementById("more");
var btnText = document.getElementById("myBtn");
document.getElementById('hideOnClick').innerHTML = "Hello to the world";
document.getElementById('conditional-tag').style.display = "block";
if (dots.style.display === "none") {
dots.style.display = "inline";
btnText.innerHTML = "Read more";
moreText.style.display = "none";
document.getElementById('hideOnClick').innerHTML = "No. 60, Jalan Pendamar Indah 1B, Taman Pendamar Indah, Pelabuhan Klang, Selangor";
document.getElementById('conditional-tag').style.display = "none";
} else {
dots.style.display = "none";
btnText.innerHTML = "Read less >";
moreText.style.display = "inline";
}
}
</script>
</div>
</div>
我要在卡片折叠前后将按钮放在相同的位置。我怎么得到它?
答案 0 :(得分:1)
在这里,我删除了const http = require("http");
const port = 4098;
let app = http.createServer((request, response) => {
let url = request.url;
switch (url) {
case "/":
getStaticFile(response, "./public/home.html");
break;
case "/contact":
getStaticFile(response, "./public/contact.html");
break;
default:
response.send("Oops...Page Not Found!");
break;
}
});
function getStaticFile(response, pathToFile) {
fs.readFile(pathToFile, function(error, data) {
if (error) {
response.writeHead("500", { "Content-Type": "text/plain" });
response.end("500 - Internal Server Error");
}
if (data) {
response.writeHead("200", { "Content-Type": "text/html" });
response.end(data);
}
});
}
app.listen(port, () => {
!console.log(`Listening to connections on port ${port}`);
});
,并添加了float: right
并设置了position:relative;
。
right:250px;
* {
font-family: verdana, sans-serif;
}
#more {
display: none;
}
.wrap-collabsible {
margin-bottom: 1.2rem 0;
margin-top: 40px;
}
input[type='checkbox'] {
display: none;
}
#myBtn {
position: relative;
left: 250px;
display: block;
font-weight: bold;
font-family: Verdana, sans-serif;
text-transform: uppercase;
text-align: center;
border: none;
padding: 1rem;
outline: none;
color: #A77B0E;
background: #FAE042;
cursor: pointer;
border-radius: 7px;
transition: all 0.25s ease-out;
}
#myBtn:hover {
color: #7C5A0B;
}
/* .lbl-toggle::before {
content: ' ';
display: inline-block;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid currentColor;
vertical-align: middle;
margin-right: .7rem;
transform: translateY(-2px);
transition: transform .2s ease-out;
} */
.toggle:checked+.lbl-toggle::before {
transform: rotate(90deg) translateX(-3px);
}
.collapsible-content {
max-height: 0px;
overflow: hidden;
transition: max-height .25s ease-in-out;
}
.toggle:checked+.lbl-toggle+.collapsible-content {
max-height: 350px;
}
.toggle:checked+.lbl-toggle {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.collapsible-content .content-inner {
background: rgba(250, 224, 66, .2);
border-bottom: 1px solid rgba(250, 224, 66, .45);
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
padding: .5rem 1rem;
}
.Add {
font-weight: bolder;
}
.wrapper {
padding: 0px 15px 0px 15px;
display: table-cell;
}
.box {
padding: 10px;
box-shadow: 5px 4px 9px 0px #d8d7d7;
border: 1px solid #eeee;
}
.inner-box {
width: 30%;
float: left;
display: table-cell;
}
.Text-box {
font-family: verdana, sans-serif;
margin-top: -16px;
}
.Add-text {
font-weight: bolder;
}
.text {
color: blue;
}
.img {
max-width: 88%;
height: auto;
}
#conditional-tag {
display: none;
}
答案 1 :(得分:0)
您只需要用类包装div-容器div内的内部包装盒和包装纸,这将解决您的问题。当前的问题是包装器div的宽度不为100%,因此,您会看到“ Read Less”按钮没有正确放置。
import "react-dates/initialize";
import "react-dates/lib/css/_datepicker.css";
import { SingleDatePicker } from "react-dates";
export default class ExpenseForm extends React.Component {
constructor(props) {
super(props);
this.state = {
createdAt: moment(),
calendarFocused: false
};
this.onDateChange = this.onDateChange.bind(this);
this.onFocusChange = this.onFocusChange.bind(this);
}
onDateChange(createdAt) {
this.setState(() => ({ createdAt }));
}
onFocusChange({ focused }) {
this.setState(() => ({
focused
}));
}
render() {
return (
<div>
<SingleDatePicker
date={this.state.createdAt}
startDateId="MyDatePicker"
onDateChange={this.onDateChange}
focused={this.state.calendarFocused}
onFocusChange={this.onFocusChange}
id="SDP"
/>
</div>
);
}
}
提琴供您参考: http://jsfiddle.net/c1w8p7yj/