Questions tagged [glow]
188 questions
0
votes
1 answer
How can I achieve a glow effect that almost looks like a bulb light?
I have a container which has its borders moving around it which works fine. The last thing I need to do is to achieve a very bulb like glow effect. I will post an image of it below. I am not sure how to achieve that:
So far I have tried the…

Angel Hadzhiev
- 664
- 2
- 6
- 20
0
votes
0 answers
How would I add a glow around the circle below in python turtle?
I have got my code for the circle but I just need the glow to look like a white shining sun but I have tried so many different things and none have worked
This is my code so far and it creates a randomized white sun size which is what I need but it…

Alec
- 1
- 1
0
votes
1 answer
use fulutter_inappwebview how remove bounce scroll glow
I tried using the code explained online, other listview can be removed, but using Flutter_ Inappwebview plugin, this effect cannot be removed after opening the webpage
Other answer which I followed: Here
What can I do? I can only remove this…

pushtime com
- 1
- 1
0
votes
0 answers
How to add Glow/Bloom effect to wire mesh
Currently I have this code. It's creating a glowing box but I want the lines/ edges of the box/ wire frame to glow. I'd like to get Bloom working if possible. How can I accomplish this? thanks

javajoe
- 1
- 1
0
votes
1 answer
How to make illumination moving effect on hover WINUI 3
Sorry for maybe stupid question.
In WinUI 2 Gallery on reveal focus there is amazing effect on mouse over, is something like this in WinUI 3?
I tried to google, but it gives me nothing...

Th3Suspect
- 25
- 4
0
votes
0 answers
How can I give blur effect in android studio?
How can I do to give the lighting effect to the edges of the letter in android studio? The card I use is an image and I want to give it the border and lighting
I tried to put in an image but it is too complicated for me
0
votes
1 answer
How can i make the glowing effect behind a video?
In the latest Youtube update, Google has put a glow effect behind the videos. He calls it "cinematicmode" which takes the video in question and creates that beam of light while the video is playing. I'm with a Boostrap5 project trying to replicate…

Imanoldt
- 11
- 1
0
votes
0 answers
C++ Data type error while building glow compiler
I am getting the following error while i am compiling glow
/Users/dhruva_macintosh/Calligo/glow/lib/Graph/Nodes.cpp:2252:14: error: no matching function for call to 'expectCompareTrue'
isValid &= expectCompareTrue(
…

Dhruva Sundararajan
- 40
- 6
0
votes
2 answers
Glow filter alpha does not cycle
public function pulse(obj:DisplayObject, glow:GlowFilter):void
{
obj.filters = [glow];
obj.addEventListener(Event.ENTER_FRAME, function():void {
if(glow.alpha >= 1)
glow.alpha -= 0.05;
…

Aviar
- 1
0
votes
1 answer
Porting Flash -> Flex: DropShadowFilter -> RectangularDropShadow, GlowFilter ->?
I'm new to Flex and am porting a pure Flash/AS3 application to Flex 4.5.
In my Flex application I have been successfully using DropShadowFilter and GlowFilter to add some interactivity to my custom components on mouse events.
Now after reading more…

Alexander Farber
- 21,519
- 75
- 241
- 416
0
votes
1 answer
Glow Colour To Text SwiftUI
I have added the Glow colour to text with the help of shadow using custom class code below in SwiftUI.
Want to achieve:-
Output:-
Code:-
struct ContentView: View {
var body: some View {
ZStack {
Text("Hello world!")
…

Sham Dhiman
- 1,348
- 1
- 21
- 59
0
votes
1 answer
How to make a strong halo
I am able to put a halo around an UI element like a textbox.
The problem is that it nearly is invisible.
I do it with
Effect glowEffect = new DropShadowEffect
{
BlurRadius = 20,
Color = Colors.Gold,
ShadowDepth = 10,
Opacity = 1,
…

Luca
- 918
- 2
- 13
- 30
0
votes
1 answer
Why is my glow effect not appearing as desired?
I am working on a game in which I am trying to simulate a torchlike glow effect around a player. To do this, I am first drawing my player, and then a translucent overlay on my canvas. This overlay gives a feeling of darkness, dimming the screen.…

Bubbly
- 301
- 3
- 11
0
votes
1 answer
How do you do successive animations?
I’m wanting to do successive animations, like one after another instead of on a loop or one at a time. What does it look like when coding that?
Example: fade in @ 100% opacity, then fade out @ 20% opacity, then fade in 80%, then fade out 10%... so…

Rem Biths Wind
- 51
- 6
0
votes
1 answer
How can I make a glow stay the same color against the background, even though I am using additive blending?
I am using openGL and programming on an iPhone.
I am rendering a glowing 'beam' on top of my game scene. I am using a few textures with additive blending to make the glow effect. If the beam is rendered on a pure black background, the beam will…

3rdFunkyBot
- 396
- 3
- 8