refactor: hide message button
This commit is contained in:
parent
77ff1b5335
commit
2352ae5c97
1 changed files with 32 additions and 39 deletions
|
@ -10,43 +10,22 @@ layout: default
|
||||||
color: black;
|
color: black;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
border: 3px dotted #ccc !important;
|
border: 3px dotted #ccc !important;
|
||||||
padding: 0.5em 1em;
|
padding: 1em;
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<h2 style="font-weight: bold">
|
<h2 style="font-weight: bold">Hello, fellow human!</h2>
|
||||||
Hello, fellow human! Just a short message...
|
|
||||||
</h2>
|
|
||||||
<p>
|
<p>
|
||||||
Welcome! Like you, I have many areas of interests, and in this site you
|
Welcome! Just a quick message... Like you, I have many areas of interests,
|
||||||
will find posts on varying topics that are not always confined to my
|
and in this site you will find posts on varying topics that are not always
|
||||||
professional life.
|
confined to my professional life.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
There really is no central theme on this blog, and even the quality of
|
There really is no central theme on this blog -- even the writing
|
||||||
writing may change between posts. My only rule here is that I put out
|
quality/style may change between posts. My only rule here is that I put
|
||||||
words about stuff I find helpful to talk about.
|
out my thoughts about things I want to talk about.
|
||||||
</p>
|
</p>
|
||||||
<button
|
|
||||||
class="read-more-message"
|
<div class="hide-message" style="display: none">
|
||||||
style="cursor: pointer; margin-bottom: 1em"
|
|
||||||
onclick="toggleMessage()"
|
|
||||||
>
|
|
||||||
Read the full message →
|
|
||||||
</button>
|
|
||||||
<script>
|
|
||||||
function toggleMessage() {
|
|
||||||
var x = document.getElementsByClassName("hide")[0];
|
|
||||||
var y = document.getElementsByClassName("read-more-message")[0];
|
|
||||||
if (x.style.display === "none") {
|
|
||||||
x.style.display = "block";
|
|
||||||
y.style.display = "none";
|
|
||||||
} else {
|
|
||||||
x.style.display = "none";
|
|
||||||
y.style.display = "block";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<div class="hide" style="display: none">
|
|
||||||
<p>
|
<p>
|
||||||
There may be some topics that pop up more than others.
|
There may be some topics that pop up more than others.
|
||||||
<a href="/technology">Technology</a> posts are mostly about web
|
<a href="/technology">Technology</a> posts are mostly about web
|
||||||
|
@ -55,7 +34,8 @@ layout: default
|
||||||
<a href="/personal">personal</a> posts are where I talk about stuff I
|
<a href="/personal">personal</a> posts are where I talk about stuff I
|
||||||
find interesting and helpful to put out in the open for their potential
|
find interesting and helpful to put out in the open for their potential
|
||||||
to help others as well. However, other topics will most likely be
|
to help others as well. However, other topics will most likely be
|
||||||
included in the future and a lot of things may change over time.
|
included in the future and a lot of things may change over time. See
|
||||||
|
<a href="/categories">all posts</a> grouped by topic.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Thank you for the interest in reading. I look forward to any feedback or
|
Thank you for the interest in reading. I look forward to any feedback or
|
||||||
|
@ -67,14 +47,27 @@ layout: default
|
||||||
<li>chat: <a href="https://t.me/ayoayco">ayoayco @ Telegram</a></li>
|
<li>chat: <a href="https://t.me/ayoayco">ayoayco @ Telegram</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>~ <em>Ayo Ayco</em></p>
|
<p>~ <em>Ayo Ayco</em></p>
|
||||||
<button
|
|
||||||
class="read-less-message"
|
|
||||||
style="cursor: pointer"
|
|
||||||
onclick="toggleMessage()"
|
|
||||||
>
|
|
||||||
← Show less...
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
<button
|
||||||
|
class="read-message"
|
||||||
|
style="cursor: pointer"
|
||||||
|
onclick="toggleMessage()"
|
||||||
|
>
|
||||||
|
Read full message »
|
||||||
|
</button>
|
||||||
|
<script>
|
||||||
|
function toggleMessage() {
|
||||||
|
var x = document.getElementsByClassName("hide-message")[0];
|
||||||
|
var y = document.getElementsByClassName("read-message")[0];
|
||||||
|
if (x.style.display === "none") {
|
||||||
|
x.style.display = "block";
|
||||||
|
y.innerHTML = "« Read less...";
|
||||||
|
} else {
|
||||||
|
x.style.display = "none";
|
||||||
|
y.innerHTML = "Read full message »";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</div>
|
</div>
|
||||||
{% if site.posts.size > 0 %}
|
{% if site.posts.size > 0 %}
|
||||||
<ul class="blog-home__list-items">
|
<ul class="blog-home__list-items">
|
||||||
|
|
Loading…
Reference in a new issue