HTML to achieve simple ListViews effect Result: css style file listviewTest.css body{ background: whitesmoke; } #mainContentDiv{ position: absolute; width : 70%; height :100%; background: whitesmoke; top: 10%; left: 10%; } .mainDivMainImgDiv{ position: absolute; width : 100%; height : 50px; background: white; } .mainDivMainInfoiv{ position: absolute; width : 100%; height : 100%; background: whitesmoke; top: 60px; } /*js implements div with floating special effects*/ .occlusionDiv{ position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.3); opacity:0; z-index: 14; } .headLeftDiv{ position: absolute; width: 50%; height: 100%; left: 4%; top: 25%; } .headLeftDivFont{ font-weight: 500; /*line-height: 58px;*/ font-size: 20px; color: #333; } /*---------------------------subInfoDiv--------------*/ .mainDIvMainInfoDivSubInfoDiv{ position: absolute; width : 100%; height: 13%; background:white; border: 1px solid #eaeaea; } .mainDIvMainInfoDivSubInfoDiv:hover{ background: rgba(0,0,0,0.3); } .mainDivMainInfoiv_HeadTextDiv{ position: absolute; top: 10%; left: 3%; width : 30%; height: 30%; background:rgba(0,0,0,0); } .mainDivMainInfoiv_mainTextDiv{ position: absolute; top: 52%; left: 3%; width : 95%; height: 20%; background:rgba(0,0,0,0); } .mainDivMainInfoiv_TrailTextDiv{ position: absolute; bottom: 3%; left: 3%; width : 30%; height: 30%; background:rgba(0,0,0,0); } .mainDivMainInfoiv_HeadTextDiv_TextBox{ position: absolute; top: 25%; width: 100%; height: 50%; background:rgba(0,0,0,0); } .cardInfoTitle { font-weight: 700; /*color: #1f264d;*/ height: 22px; display: inline-block; max-width: 600px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; } .flexFont{ display: flex; font-size: 12px; color: rgb(102, 102, 102); height: 20px; } .rightFlexFont{ color: #b3b3b3; font-weight: 500; text-align: right; font-size: 12px; color: rgb(179, 179, 179); } .InfoDiv_Right_1{ position: absolute; top: 30%; right: 2%; width : 30%; height: 30%; background:rgba(0,0,0,0); } .InfoDiv_Right_2{ position: absolute; top: 55%; right: 2%; width : 30%; height: 30%; background:rgba(0,0,0,0); } .mainDivMainInfoiv_TrailTextDiv_TextBox{ position: absolute; top: 25%; width: 100%; height: 50%; background:rgba(0,0,0,0); } .mainDivMainInfoiv_mainTextDiv_TextBox{ position: absolute; top: 25%; width: 100%; height: 50%; background:rgba(0,0,0,0); } html page: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>ListviewTest</title> <link rel="stylesheet" href="listviewTest.css"> <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script> </head> <body> <script> $(function () { //Produce floating special effects, you can also use css:hover to achieve //The header is implemented by js, and the sub-items in the list below are implemented by css:hover $(".occlusionDiv").mouseover(function () { //Set its transparency, opaque when 1, transparent when 0$(this).css("opacity", "1"); }).mouseout(function () { $(this).css("opacity", "0"); }); }); </script> <div id="mainContentDiv"> <div class="mainDivMainImgDiv" style=""> <!-- A div that implements the floating effect. The header is implemented by js, and the following sub-items are implemented by css:hover --> <div class="occlusionDiv"></div> <div class="headLeftDiv headLeftDivFont">I received</div> </div> <div class="mainDivMainInfoiv" style=""> <div class="mainDIvMainInfoDivSubInfoDiv" style="position: absolute; left: 0%; top: 0%;"> <div class="mainDivMainInfoiv_HeadTextDiv" style=""> <div class="mainDivMainInfoiv_HeadTextDiv_TextBox cardInfoTitle" style=""> On the legal effect and problems of electronic contracts_Yu Xiaosong</div> </div> <div class="mainDivMainInfoiv_mainTextDiv" style="display: flex; font-size: 12px; color: rgb(102, 102, 102); height: 20px;"> Initiator: Zhang San<div class="mainDivMainInfoiv_mainTextDiv_TextBox" style=""></div> </div> <div class="mainDivMainInfoiv_TrailTextDiv" style=""> <div class="mainDivMainInfoiv_TrailTextDiv_TextBox flexFont" style=""> Participants: Zhang San, Li Si</div> </div> <div class="InfoDiv_Right_1 rightFlexFont"> Withdrawn</div> <div class="InfoDiv_Right_2 rightFlexFont"> 2020-02-12 18:41:11 </div> <div></div> </div> <div class="mainDIvMainInfoDivSubInfoDiv" style="position: absolute; left: 0%; top: 13%;"> <div class="mainDivMainInfoiv_HeadTextDiv" style=""> <div class="mainDivMainInfoiv_HeadTextDiv_TextBox cardInfoTitle" style=""> On the legal effect and problems of electronic contracts_Yu Xiaosong</div> </div> <div class="mainDivMainInfoiv_mainTextDiv" style="display: flex; font-size: 12px; color: rgb(102, 102, 102); height: 20px;"> Initiator: Zhang San<div class="mainDivMainInfoiv_mainTextDiv_TextBox" style=""></div> </div> <div class="mainDivMainInfoiv_TrailTextDiv" style=""> <div class="mainDivMainInfoiv_TrailTextDiv_TextBox flexFont" style=""> Participants: Zhang San, Li Si</div> </div> <div class="InfoDiv_Right_1 rightFlexFont" style="color: #6db56d;"> Completed</div> <div class="InfoDiv_Right_2 rightFlexFont"> 2020-02-12 18:41:11 </div> </div> <div class="mainDIvMainInfoDivSubInfoDiv" style="position: absolute; left: 0%; top: 26%;"> <div class="mainDivMainInfoiv_HeadTextDiv" style=""> <div class="mainDivMainInfoiv_HeadTextDiv_TextBox cardInfoTitle" style=""> On the legal effect and problems of electronic contracts_Yu Xiaosong</div> </div> <div class="mainDivMainInfoiv_mainTextDiv" style="display: flex; font-size: 12px; color: rgb(102, 102, 102); height: 20px;"> Initiator: Zhang San<div class="mainDivMainInfoiv_mainTextDiv_TextBox" style=""></div> </div> <div class="mainDivMainInfoiv_TrailTextDiv" style=""> <div class="mainDivMainInfoiv_TrailTextDiv_TextBox flexFont" style=""> Participants: Zhang San, Li Si</div> </div> <div class="InfoDiv_Right_1 rightFlexFont" style="color: #6db56d;"> Completed</div> <div class="InfoDiv_Right_2 rightFlexFont"> 2020-02-12 18:41:11 </div> </div> <div class="mainDIvMainInfoDivSubInfoDiv" style="position: absolute; left: 0%; top: 39%;"> <div class="mainDivMainInfoiv_HeadTextDiv" style=""> <div class="mainDivMainInfoiv_HeadTextDiv_TextBox cardInfoTitle" style=""> On the legal effect and problems of electronic contracts_Yu Xiaosong</div> </div> <div class="mainDivMainInfoiv_mainTextDiv" style="display: flex; font-size: 12px; color: rgb(102, 102, 102); height: 20px;"> Initiator: Zhang San<div class="mainDivMainInfoiv_mainTextDiv_TextBox" style=""></div> </div> <div class="mainDivMainInfoiv_TrailTextDiv" style=""> <div class="mainDivMainInfoiv_TrailTextDiv_TextBox flexFont" style=""> Participants: Zhang San, Li Si</div> </div> <div class="InfoDiv_Right_1 rightFlexFont"> Withdrawn</div> <div class="InfoDiv_Right_2 rightFlexFont"> 2020-02-12 18:41:11 </div> </div> <div class="mainDIvMainInfoDivSubInfoDiv" style="position: absolute; left: 0%; top: 52%;"> <div class="mainDivMainInfoiv_HeadTextDiv" style=""> <div class="mainDivMainInfoiv_HeadTextDiv_TextBox cardInfoTitle" style=""> On the legal effect and problems of electronic contracts_Yu Xiaosong</div> </div> <div class="mainDivMainInfoiv_mainTextDiv" style="display: flex; font-size: 12px; color: rgb(102, 102, 102); height: 20px;"> Initiator: Zhang San<div class="mainDivMainInfoiv_mainTextDiv_TextBox" style=""></div> </div> <div class="mainDivMainInfoiv_TrailTextDiv" style=""> <div class="mainDivMainInfoiv_TrailTextDiv_TextBox flexFont" style=""> Participants: Zhang San, Li Si</div> </div> <div class="InfoDiv_Right_1 rightFlexFont"> Withdrawn</div> <div class="InfoDiv_Right_2 rightFlexFont"> 2020-02-12 18:41:11 </div> </div> <div class="mainDIvMainInfoDivSubInfoDiv" style="position: absolute; left: 0%; top: 65%;"> <div class="mainDivMainInfoiv_HeadTextDiv" style=""> <div class="mainDivMainInfoiv_HeadTextDiv_TextBox cardInfoTitle" style=""> On the legal effect and problems of electronic contracts_Yu Xiaosong</div> </div> <div class="mainDivMainInfoiv_mainTextDiv" style="display: flex; font-size: 12px; color: rgb(102, 102, 102); height: 20px;"> Initiator: Zhang San<div class="mainDivMainInfoiv_mainTextDiv_TextBox" style=""></div> </div> <div class="mainDivMainInfoiv_TrailTextDiv" style=""> <div class="mainDivMainInfoiv_TrailTextDiv_TextBox flexFont" style=""> Participants: Zhang San, Li Si</div> </div> <div class="InfoDiv_Right_1 rightFlexFont" style="color: #6db56d;"> Completed</div> <div class="InfoDiv_Right_2 rightFlexFont"> 2020-02-12 18:41:11 </div> </div> <div class="mainDIvMainInfoDivSubInfoDiv" style="position: absolute; left: 0%; top: 78%;"> <div class="mainDivMainInfoiv_HeadTextDiv" style=""> <div class="mainDivMainInfoiv_HeadTextDiv_TextBox cardInfoTitle" style=""> On the legal effect and problems of electronic contracts_Yu Xiaosong</div> </div> <div class="mainDivMainInfoiv_mainTextDiv" style="display: flex; font-size: 12px; color: rgb(102, 102, 102); height: 20px;"> Initiator: Zhang San<div class="mainDivMainInfoiv_mainTextDiv_TextBox" style=""></div> </div> <div class="mainDivMainInfoiv_TrailTextDiv" style=""> <div class="mainDivMainInfoiv_TrailTextDiv_TextBox flexFont" style=""> Participants: Zhang San, Li Si</div> </div> <div class="InfoDiv_Right_1 rightFlexFont"> Withdrawn</div> <div class="InfoDiv_Right_2 rightFlexFont"> 2020-02-12 18:41:11 </div> </div> </div> </div> </body> </html> Summarize This is the end of this article about the detailed example code of how to implement simple ListViews effect in html. For more relevant content about how to implement ListViews in html, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! |
<<: Implementation of setting fixed IP when starting docker container
>>: Keep-alive multi-level routing cache problem in Vue
1. What is master-slave replication? Master-slave...
Database Command Specification All database objec...
I wrote a simple UDP server and client example be...
one. Remote deployment using tomcat 1.1 Problems ...
After half an hour of trying to pull the MySQL im...
docker-compose-monitor.yml version: '2' n...
Table of contents 1. Learn to return different da...
What is CN2 line? CN2 stands for China Telecom Ne...
The road ahead is always so difficult and full of...
Record the installation and configuration method ...
This article aims to clarify the relationship bet...
1. Use contrasting colours. The contrast here ref...
1. Introduction I have taken over a project of th...
Let's try out nginx's reverse proxy here....
In CSS files, we often see some font names become...