Overlays are user interface elements that are displayed over other UI elements, typically for the purpose of presenting additional or enhanced information and detail.
Questions tagged [overlay]
4798 questions
1
vote
1 answer
Woocommerce show product title on hover image overlay
I am working on a woocommerce webshop. Now, i am looking for a solution to display the product title and price inside an overlay when a customer hovers the product image/thumbnail.
I'm almost there. At this moment the product price (price), title…

Danny
- 95
- 9
1
vote
0 answers
How do I center an OverlayEntry relative to a Widget on the screen in Flutter?
I am struggling to figure out how to center a widget in an OverlayEntry (inside an Overlay) relative to another Widget on the screen.
The following is a simplified version of the code I have up until now (assume it's a StatefulWidget ):
class…

arun_dev
- 11
- 1
1
vote
2 answers
Current line highlight (hl-line) does not respect existing highlights
I am trying to configure hl-line or hl-line+ in emacs to respect the existing highlights/text background colors in the buffer.
I have configured hl-line in ~/.emacs as follows:
(require 'hl-line)
(global-hl-line-mode 1)
Then I highlight the symbol…

ed56
- 11
- 2
1
vote
1 answer
Vuetify: Warning when changing theme of
I am pretty new to Vue.js and it's my first time with vuetify!
For the login component, I use a , that works fine, but it is by default in dark theme. My form was white, it is now black.
I try to use dark and light like in this…

Antoine
- 77
- 1
- 7
1
vote
1 answer
Trying to fit text to cover overlay on picture
Code:
.overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
opacity: 0;
transition: .5s ease;
background-color: blue;
}
.cont:hover .overlay {
opacity: 1;
}
.text {
color: gold;
…

Scott Owen
- 11
- 2
1
vote
1 answer
Overlay 2 pdf files by each page using pymupdf
I need to combine (merge/overlay) 2 pdf files like second on first by each page. I've tried the code
import fitz
doc1 = fitz.open(background)
doc2 = fitz.open(only_text_path)
doc1.insertPDF(doc2)
but it only concatenates doc1 + doc2, doesn't…

Demetry Pascal
- 383
- 4
- 15
1
vote
1 answer
Android ImageView overlay over Opengl ES unexpected behavior
I'm attempting to add an overlay to an Android opengl ES application, and am currently specifying an ImageView and working off code from SurfaceViewOverlay API Demo, effectively merging two applications I wrote, one that was canvas based and one…

Kactus
- 123
- 7
1
vote
0 answers
overlay on other windows/desktop with python
My goal is to have a python program, that can project an overlay of boxes, rectangles, etc.
basically I want to be able to paint on my screen on top of whatever is currently active. The overlay-program should not intrude on the normal usage of what…

Ame
- 35
- 6
1
vote
0 answers
How to to add Blur overlay on top of all views using .Blur as ViewModifier in SwiftUI
I have created a viewModifier which blurs a view when added.
Problem is when I add it on parent view of all the contents, all views are blurred differently.
I assume it's because it goes to all the contents and blur each of them individually instead…

Dreiohc
- 317
- 2
- 12
1
vote
1 answer
Why does docker/overlay2 show up as a separate mountpoint?
I am running docker on a RHEL7.9 machine we hope to host webservices and a few other applications.
$ docker info
Client:
Context: default
Debug Mode: false
Plugins:
app: Docker App (Docker Inc., v0.9.1-beta3)
buildx: Build with BuildKit…

JLuxton
- 421
- 1
- 5
- 17
1
vote
1 answer
Angular - Overlay
I created an overlay in a project based on the example :
https://material.angular.io/cdk/overlay/
In my component Html :
Some Infos here
1
vote
1 answer
How to read video file using Foundry Nuke Python interpreter?
I try to merge 2 videos in Nuke. When I'm doing it in GUI everything is OK but when I'm doing it in python interpreter the result contains only the first frames of each video. What am I doing wrong in the code below?
import nuke
content =…

shpindler
- 357
- 2
- 12
1
vote
0 answers
Appbar hide by Overlay in flutter
In my Page I have 12 Textformfields. These 12 textformfields are inside the SingleChildScrollView. When I scroll the page, the overlays and the focusnodes are come to the top of the Appbar.
class _SampleState extends State {
var…

User
- 105
- 10
1
vote
0 answers
Python Geopandas - Overlay function is not working accordingly with visual evidence
I have generated two geodataframes:
df1=gpd.read_file("~/rede_cicloviaria.shp") # A series of Linetrings of a cycling network
df2=gpd.read_file("~/zonas.shp") # Each line represents a traffic zone as a polygon structure
My final objective…

Lucas Melo
- 11
- 1
1
vote
2 answers
Overlay box when validation occur at the end of textform field in flutter
I want to show a validation message in a overlay box at the nearest of textformfield . Can you help me? I want like this.

User
- 105
- 10