Tất cả bài viết  |  Bootstrap

  • zoom in
  • zoom out
  • text align left
  • text align center
  • text align right
  • Chỉnh màu chữ
  • Làm đậm

Thiết kế chương trình Xổ số tự chọn Jackpot Mega 6/45 bằng Bootstrap (Phần 1)

Trong bài học thiết kế web này các Bạn sẽ được học cách Thiết kế chương trình Xổ số tự chọn Jackpot Mega 6/45 bằng Bootstrap
Chương trình bao gồm 4 phần
Phần 1: Thiết kế giao diện chương trình Xổ số tự chọn Jackpot Mega 6/45 bằng Bootstrap
Phần 2: Xử lý phần chọn số
Phần 3: Thiết kế Database cho chương trình
Phần 4: Xử lý đặt vé xố tự chọn Online

Bước 1: Tạo cấu trúc HTML
 
 

JACKPOT
MEGA 6/45

Chương trình vé số tự chọn

Kỳ quay thưởng #00059 | Ngày quay thưởng 1/1/2017
(Lưu ý: Kết quả chơi thử không có giá trị lĩnh thưởng trên thực tế)

Bạn chỉ được chọn 6 số trong mỗi bảng chọn số.

A
 
 
 
 
 
B
 
 
 
 
 
C
 
 
 
 
 
D
 
 
 
 
 
E
 
 
 
 
 
F
 
 
 
 
 

Bước 2: Định dạng CSS
#mydiv_A,#mydiv_B,#mydiv_C,#mydiv_D,#mydiv_E,#mydiv_F{   
margin-top:0px;
}
table{  
border-collapse:separate;  
border-spacing:0px;  
border-color:#FF0000;  
border-width:3px;  
}

table td{   
border-style:dotted;   
border-color:#FF0000;   
font-weight:bold;   
padding-bottom:5px;
}

table td:hover{  
background-color:#CCCCCC;  
cursor:pointer;  
color:#FF0000;
}

table td:visited{  
background-color:#000000;
}

.nenbang{   
background-color:#E74724;   
color:#FFFFFF;   
font-weight:bold;   
}

.neno{   
background-color:#FFFFFF;   
}

h3 {
margin:0px;
}

label{   
float:left;   
margin:0px;   
padding-top:0px;   
cursor:pointer;
}


input[type=checkbox]:not(old),input[type=radio   ]:not(old){  
width     : 2em;  
margin    : 10;  
padding   : 0;  
font-size : 0.8em;  
opacity   : 0.0;  
cursor:pointer;  
display:inline-block;
}


input[type=checkbox]:not(old) + label,input[type=radio   ]:not(old) + label{  
display      : inline-block;  
margin-left  : -2em;  l
ine-height  : 1.5em;
}

input[type=checkbox]:not(old) + label > span,input[type=radio   ]:not(old) + label > span{  
display          : inline-block;  
width            : 0.875em;  
height           : 0.875em;  
margin           : 0.25em 0.5em 0.25em 0.25em;  border           : 0.0625em solid rgb(192,192,192);  
border-radius    : 0.25em;  
background       : rgb(224,224,224);  background-image :    -moz-linear-gradient(rgb(240,240,240),rgb(224,224,224));  
background-image :     -ms-linear-gradient(rgb(240,240,240),rgb(224,224,224));  background-image :      -o-linear-gradient(rgb(240,240,240),rgb(224,224,224));  
background-image : -webkit-linear-gradient(rgb(240,240,240),rgb(224,224,224));  background-image :         linear-gradient(rgb(240,240,240),rgb(224,224,224));  vertical-align   : bottom;
}

input[type=checkbox]:not(old):checked + label > span,input[type=radio   ]:not(old):checked + label > span{  
background-image :    -moz-linear-gradient(rgb(224,224,224),rgb(240,240,240));  
background-image :     -ms-linear-gradient(rgb(224,224,224),rgb(240,240,240));  
background-image :      -o-linear-gradient(rgb(224,224,224),rgb(240,240,240));  
background-image : -webkit-linear-gradient(rgb(224,224,224),rgb(240,240,240));  
background-image :         linear-gradient(rgb(224,224,224),rgb(240,240,240));
}

input[type=checkbox]:not(old):checked + label> span:before{  
content     : '✓';  
display     : block;  
width       : 1em;  
color       : rgb(153,204,102);  
font-size   : 0.875em;  
line-height : 1em;  text-align  : center;  
text-shadow : 0 0 0.0714em rgb(115,153,77);  
font-weight : bold;
}

input[type=radio]:not(old):checked +  label > span > span{  
display          : block;  
width            : 0.5em;  
height           : 0.5em;  
margin           : 0.125em;  
border           : 0.0625em solid rgb(115,153,77);  
border-radius    : 0.125em;  background       : rgb(153,204,102);  
background-image :    -moz-linear-gradient(rgb(179,217,140),rgb(153,204,102));  
background-image :     -ms-linear-gradient(rgb(179,217,140),rgb(153,204,102));  
background-image :      -o-linear-gradient(rgb(179,217,140),rgb(153,204,102));  
background-image : -webkit-linear-gradient(rgb(179,217,140),rgb(153,204,102));  
background-image :         linear-gradient(rgb(179,217,140),rgb(153,204,102));
}
Bước 3: Gọi thư viện Bootstrap và Font awesome
 
  
  
Bước 4: Gọi thư viện JQUERY
 
Xem  demo Tải Code Đăng ký tham gia làm hội viên của kênh để được xem các bài học mới nhất
Bạn có thể quan tâm

Tổng hợp các bài học hay về kỹ thuật thiết kế giao diện web với Fireworks Học lập trình web

Tổng hợp các bài học hay về lập trình hướng đối tượng PHP cơ bản Học lập trình web

Tổng hợp các bài học hay về lập trình bootstrap Học lập trình web

Hướng dẫn cách tạo Bootstrap ScrollSpy (Phần 2) Học lập trình web

Hướng dẫn cách tạo Bootstrap ScrollSpy (Phần 1) Học lập trình web

Hướng dẫn cách tạo Bootstrap Javascript Modal (Phần 2) Học lập trình web

Hướng dẫn cách tạo Bootstrap Javascript Modal (Phần 1) Học lập trình web

Hướng dẫn cách tạo Tooltip trong Bootstrap Học lập trình web

Hướng dẫn tạo Arcordion Panel trong Bootstrap (Phần 2) Học lập trình web

Hướng dẫn tạo Arcordion Panel trong Bootstrap (Phần 1) Học lập trình web