adjective

Url

37 of 42
Other / Light

opaque - Dull or lacking brightness, not allowing light to pass through; not transparent or translucent.

The glass was opaque, and all we could see was the form of a person on the other side, and it was scary.

// Auto-focus search input when modal opens var searchModal = document.getElementById('searchModal'); if (searchModal) { searchModal.addEventListener('shown.bs.modal', function () { var inp = searchModal.querySelector('input[name=search]'); if (inp) inp.focus(); }); }