Click here to view the brief
Once the project started, we had several meetings. In the first meeting we decided on our individual tasks, and I was responsible for the web design and coding. The specific content was to present the individual videos of the six team members and the total video of the group using a web page. It involved the layout of the website and the implementation of video conversion effects. We had a few meetings later to confirm the style of the team and the dynamic effects needed for the website.
I completed the design and build of the website a week before the show. On the Monday before the show, I went to the studio and used the computer in the studio to do the final tuning to make sure the show would work. Afterwards, I worked with the team to set up the borrowed projector and other physical things.
For the web design I used Java Script to implement a dynamic effect that fits the theme and our logo. Unfortunately, due to time and tool limitations, I was not able to achieve a web page for both computers and mobile phones. I only completed two web pages for computer and mobile separately.
@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap");
* {
box-sizing: border-box; }
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: url(./bgp.jpg)
}
body {
display: flex;
align-items: center;
justify-content: center;
padding: 30px 10px;
font-family: 'DM Sans', sans-serif;
transition: background .4s ease-in;
background-color: #c394f8; }
body.blue {
background-color: #428aa6; }
input[type=radio] {
display: none; }
.card {
position: absolute;
width: 60%;
height: 100%;
left: 0;
right: 0;
margin: auto;
transition: transform 1s ease;
cursor: pointer; }
.container {
width: 100%;
max-width: 800px;
max-height: 600px;
height: 100%;
transform-style: preserve-3d;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center; }
.cards {
position: relative;
width: 100%;
height: 100%;
margin-bottom: 20px; }
video {
width: 100%;
height: 100%;
border-radius: 10px;
object-fit: cover; }
#item-1:checked ~ .cards #song-7, #item-2:checked ~ .cards #song-1, #item-3:checked ~ .cards #song-2, #item-4:checked ~ .cards #song-3, #item-5:checked ~ .cards #song-4, #item-6:checked ~ .cards #song-5, #item-7:checked ~ .cards #song-6 {
transform: translatex(-50%) scale(0.59);
opacity: .9;
z-index: 0;
width: 700px;
height: 400px; }
#item-1:checked ~ .cards #song-7 .video, #item-2:checked ~ .cards #song-1 .video, #item-3:checked ~ .cards #song-2 .video, #item-4:checked ~ .cards #song-3 .video, #item-5:checked ~ .cards #song-4 .video, #item-6:checked ~ .cards #song-5 .video, #item-7:checked ~ .cards #song-6 .video {
}
#item-1:checked ~ .cards #song-6, #item-2:checked ~ .cards #song-7, #item-3:checked ~ .cards #song-1, #item-4:checked ~ .cards #song-2, #item-5:checked ~ .cards #song-3, #item-6:checked ~ .cards #song-4, #item-7:checked ~ .cards #song-5 {
transform: translatex(-80%) scale(0.56);
opacity: .9;
z-index: -1;
width: 700px;
height: 400px; }
#item-1:checked ~ .cards #song-6 .video, #item-2:checked ~ .cards #song-7 .video, #item-3:checked ~ .cards #song-1 .video, #item-4:checked ~ .cards #song-2 .video, #item-5:checked ~ .cards #song-3 .video, #item-6:checked ~ .cards #song-4 .video, #item-7:checked ~ .cards #song-5 .video {
}
#item-1:checked ~ .cards #song-5, #item-2:checked ~ .cards #song-6, #item-3:checked ~ .cards #song-7, #item-4:checked ~ .cards #song-1, #item-5:checked ~ .cards #song-2, #item-6:checked ~ .cards #song-3, #item-7:checked ~ .cards #song-4 {
transform: translatex(-110%) scale(0.53);
opacity: .8;
z-index: -2;
width: 700px;
height: 400px; }
#item-1:checked ~ .cards #song-5 .video, #item-2:checked ~ .cards #song-6 .video, #item-3:checked ~ .cards #song-7 .video, #item-4:checked ~ .cards #song-1 .video, #item-5:checked ~ .cards #song-2 .video, #item-6:checked ~ .cards #song-3 .video, #item-7:checked ~ .cards #song-4 .video {
}
#item-1:checked ~ .cards #song-4, #item-2:checked ~ .cards #song-5, #item-3:checked ~ .cards #song-6, #item-4:checked ~ .cards #song-7, #item-5:checked ~ .cards #song-1, #item-6:checked ~ .cards #song-2, #item-7:checked ~ .cards #song-3 {
transform: translatex(110%) scale(0.53);
opacity: .8;
z-index: -2;
width: 700px;
height: 400px; }
#item-1:checked ~ .cards #song-4 .video, #item-2:checked ~ .cards #song-5 .video, #item-3:checked ~ .cards #song-6 .video, #item-4:checked ~ .cards #song-7 .video, #item-5:checked ~ .cards #song-1 .video, #item-6:checked ~ .cards #song-2 .video, #item-7:checked ~ .cards #song-3 .video {
}
#item-1:checked ~ .cards #song-3, #item-2:checked ~ .cards #song-4, #item-3:checked ~ .cards #song-5, #item-4:checked ~ .cards #song-6, #item-5:checked ~ .cards #song-7, #item-6:checked ~ .cards #song-1, #item-7:checked ~ .cards #song-2 {
transform: translatex(80%) scale(0.56);
opacity: .9;
z-index: -1;
width: 700px;
height: 400px; }
#item-1:checked ~ .cards #song-3 .video, #item-2:checked ~ .cards #song-4 .video, #item-3:checked ~ .cards #song-5 .video, #item-4:checked ~ .cards #song-6 .video, #item-5:checked ~ .cards #song-7 .video, #item-6:checked ~ .cards #song-1 .video, #item-7:checked ~ .cards #song-2 .video {
}
#item-1:checked ~ .cards #song-2, #item-2:checked ~ .cards #song-3, #item-3:checked ~ .cards #song-4, #item-4:checked ~ .cards #song-5, #item-5:checked ~ .cards #song-6, #item-6:checked ~ .cards #song-7, #item-7:checked ~ .cards #song-1 {
transform: translatex(50%) scale(0.59);
opacity: .9;
z-index: -0;
width: 700px;
height: 400px; }
#item-1:checked ~ .cards #song-2 .video, #item-2:checked ~ .cards #song-3 .video, #item-3:checked ~ .cards #song-4 .video, #item-4:checked ~ .cards #song-5 .video, #item-5:checked ~ .cards #song-6 .video, #item-6:checked ~ .cards #song-7 .video, #item-7:checked ~ .cards #song-1 .video {
}
#item-1:checked ~ .cards #song-1, #item-2:checked ~ .cards #song-2, #item-3:checked ~ .cards #song-3, #item-4:checked ~ .cards #song-4, #item-5:checked ~ .cards #song-5, #item-6:checked ~ .cards #song-6, #item-7:checked ~ .cards #song-7 {
transform: translatex(0) scale(1);
opacity: 1;
z-index: 1;
width: 700px;
height: 400px; }
#item-1:checked ~ .cards #song-1 .video, #item-2:checked ~ .cards #song-2 .video, #item-3:checked ~ .cards #song-3 .video, #item-4:checked ~ .cards #song-4 .video, #item-5:checked ~ .cards #song-5 .video, #item-6:checked ~ .cards #song-6 .video, #item-7:checked ~ .cards #song-7 .video {
}
.video{
height:400px;
width:700px;
}
.box{
padding-top: 10px;
text-align:center;
width:720px;
height:530px;
background:white;
box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4)
}
.pername{
text-align:center;
font-size:30px;
height:30px;
width:700px;
padding-top: 30px;
}