xxxxxxxxxx
1
<section class="intro">
2
<div class="bg-image-vertical h-100" style="background-color: #EFD3E4;
3
background-image: url(https://mdbootstrap.com/img/Photos/new-templates/search-box/img1.jpg);
4
">
5
<div class="mask d-flex align-items-center h-100">
6
<div class="container">
7
<p class="display-4 font-weight-bold mb-5 text-dark">Discover the Amazing City</p>
8
<div class="card">
9
<div class="card-body">
10
<div class="row justify-content-center">
11
<div class="col-md-6 mb-3 mb-md-0">
12
<div id="basic" class="form-outline">
13
<input type="text" id="form1" class="form-control form-control-lg" />
14
<label class="form-label" for="form1">What are you looking for?</label>
15
</div>
16
</div>
17
<div class="col-md-4 mb-3 mb-md-0">
18
<div id="location" class="form-outline">
19
<input type="text" id="form2" class="form-control form-control-lg" />
20
<label class="form-label" for="form2">Location</label>
21
</div>
22
</div>
23
<div class="col-md-2">
24
<input class="btn btn-secondary btn-block btn-lg" type="submit" value="Search" />
25
</div>
26
</div>
27
</div>
28
</div>
29
</div>
30
</div>
31
</div>
32
</section>
xxxxxxxxxx
1
html,
2
body,
3
.intro {
4
height: 100%;
5
}
6
7
.bg-image-vertical {
8
position: relative;
9
overflow: hidden;
10
background-repeat: no-repeat;
11
background-position: right center;
12
background-size: auto 100%;
13
}
14
15
.form-outline .form-control:focus ~ .form-notch .form-notch-leading {
16
border-top: 0.125rem solid #b23cfd;
17
border-bottom: 0.125rem solid #b23cfd;
18
border-left: 0.125rem solid #b23cfd;
19
}
20
.form-outline .form-control:focus ~ .form-notch .form-notch-middle {
21
border-color: #b23cfd;
22
}
23
.form-outline .form-control:focus ~ .form-notch .form-notch-trailing {
24
border-top: 0.125rem solid #b23cfd;
25
border-bottom: 0.125rem solid #b23cfd;
26
border-right: 0.125rem solid #b23cfd;
27
}
28
.form-outline .form-control:focus ~ .form-label {
29
color: #b23cfd;
30
}
31
.autocomplete-input.focused ~ .form-notch .form-notch-leading {
32
border-top: 2px solid #b23cfd;
33
border-bottom: 2px solid #b23cfd;
34
border-left: 2px solid #b23cfd;
35
transition: all 0.2s linear;
36
}
37
.autocomplete-input.focused ~ .form-notch .form-notch-middle {
38
border-color: #b23cfd;
39
}
40
.autocomplete-input.focused ~ .form-notch .form-notch-trailing {
41
border-color: #b23cfd;
42
}
43
.autocomplete-input.focused ~ .autocomplete-label {
44
color: #b23cfd;
45
}
xxxxxxxxxx
1
const basicAutocomplete = document.querySelector('#basic');
2
const data = ['Museum', 'Party', 'Restaurant', 'Concert', 'Architecture'];
3
const dataFilter = (value) => {
4
return data.filter((item) => {
5
return item.toLowerCase().startsWith(value.toLowerCase());
6
});
7
};
8
9
new mdb.Autocomplete(basicAutocomplete, {
10
filter: dataFilter
11
});
12
13
const locationAutocomplete = document.querySelector('#location');
14
const dataL = ['Madrid', 'Rome', 'Lisbon', 'Paris', 'London'];
15
const dataFilterL = (value) => {
16
return dataL.filter((item) => {
17
return item.toLowerCase().startsWith(value.toLowerCase());
18
});
19
};
20
21
new mdb.Autocomplete(locationAutocomplete, {
22
filter: dataFilterL
23
});
Console errors: 0