조직의 GCSE 옵션을위한 웹 사이트를 만들고 싶습니다. 현재 메모장을 사용하여 초안을 만들고 있습니다. 나는 부분적으로 초보자이다.HTML 재질 디자인 버튼
모든 옵션을 나열하고 내가 클릭하면 제목에 관한 모든 카드를 열 수있는 호버 블 드롭 다운을 만들고 싶습니다. 내가 만든 https://getmdl.io/components/index.html#cards-section
: 나는 또한 카드의 종류에 각 과목을 연결하려면, 다음
/* Style The Dropdown Button */
.dropbtn {
background-color: #4CAF50;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #f1f1f1
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
background-color: #3e8e41;
}
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<div class="dropdown">
<button class="dropbtn">Compulsary</button>
<div class="dropdown-content">
<a href="#">English Language</a>
<a href="#">English Literature</a>
<a href="#">Mathematics</a>
</div>
</div>
: 나는 재료 설계 개념을 좋아하고 여기에 코드의 일부 샘플 카드 :
.demo-card-wide.mdl-card {
width: 512px;
}
.demo-card-wide>.mdl-card__title {
color: #fff;
height: 176px;
background: url('https://www.tes.com/sites/default/files/maths_blackboard.jpg') center/cover;
}
.demo-card-wide>.mdl-card__menu {
color: #fff;
}
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<div class="demo-card-wide mdl-card mdl-shadow--2dp">
<div class="mdl-card__title">
<h2 class="mdl-card__title-text">Mathematics</h2>
</div>
<div class="mdl-card__supporting-text">
This is one of the compulsary subjects and is crucial. It involves geometry, algebra, data, and numbers.
</div>
<div class="mdl-card__actions mdl-card--border">
<a class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect">
Done
</a>
</div>
</div>
카드를 드롭 다운 옵션 중 하나에 연결하면 카드가 열리 며 어떻게 카드를 닫으려면 '완료'버튼을 연결해야합니까?
도와주세요.
그러나 위와 같은 방법으로 페이지 중간에서 카드를 열고 다른 모든 부분을 밝게하고 카드를 클릭 할 수있게 할 수 있습니까? –
죄송합니다. 미안하지만 오해 하셨을 것입니다. 그렇지만 전체 페이지 중간에 열리 며 '완료'를 클릭 할 수 있습니다. 또한 영어 언어를 카드 사본에 연결할 수는 있지만 임의의 텍스트로 표시 될 수 있으므로 카드를 각 단추에 별도로 연결하는 방법을 알려줄 수 있습니까? 감사합니다. –
마지막으로 편집을 저장하는 것을 잊어 버렸습니다. 새로운 요구 사항으로 다시 업데이트했습니다. 희망이 모든것을 해결합니다. –