Hello,
I have a problem with my lightbox, when I click on an image everything is working except the video. When I console.log my const named "mediaDom", the video has an img tag and it can't find the video, in other words it's undefined. And if I add the code in comment it is...
Announcement
Collapse
No announcement yet.
Search Result
Collapse
500 results in 0.1272 seconds.
Keywords
Members
Tags
-
Why the video of my lightbox is not working ?
-
Learning! I want to make a graphical navigation bar in HTMS+CSS only. No JS!
I'm working on a navigation bar for the WebDesign course I'm absolving right now.
I'm always quite ambitious, so I try to incorporate things that are a bit above my current knowledge level in order to stay sharp. Doing what I know isn't a great attitude when you want to learn, if you ask me....
-
Question about Background Image
I have just started learning HTML/CSS and am having problems changing some code i downloaded from codepen and would appreciate any feedback
background: url(https://image.ibb.co/26sjhs6/showcase.jpg); this is the original code and it works I want to use an image saved in the root folder...
-
Fortran-callable procedure to display images
Hallo!
Is there a Fortran-callable procedure to display images such as .jpg, .jpeg, .gif, .bmp, .png etc?
There probably is such a procedure in Silverfrost's ClearWin but I thought I'd look at just 'pure' Fortran first.
Eric
-
how can i sort a dataTable ?
I have a datatable (image below)
and I'd like to sort one of the columns, but I don't know how.
code looks like this:
Code:<w2:form id="worktrayform"> <div class="proctab"> <w2:dataScroller
-
Add security to hidden form field
I am trying to create a blog which allows the owner to add a post which includes an single image upload.
The CMS will also have an edit post option which will allow the previous image to be replaced with a new one
(automatically deleting the previous image) or simply leave the current image...
-
Need help with image
I know how to add an image to HTML, but I took a screenshot (i'm on mac), renamed it "coding.png", and put that in but nothing showed up, how do I add screenshots?
Update: I tried it with a normal image and its still not working, the .html file and the image file are in the...
-
Background image scaling - maintain ratio!!
Hi, I'm working on a WordPress site for my church, but can't figure out the featured image headers.
The parent div is height: 55vh; and the child div (with the background image) has background-size: cover;. On smaller screens (like a phone) you only see the center portion of the image....
-
Image grid skipping 1 spot
Hey guys
I’m adapting a page, it used to run quicksand plugin to sort the image grid, but I don’t need sorting anymore. So I disabled the Quicksand jquery.
Instead I’m only using the grid design in combination with lightbox2 to show the complete galleries per topic.
...
-
What is the max image size that GD can handle?
Hello!
I've run into this situation where as I'm trying to create a thumbnail image from a full resolution image and the script just stops. No error, nothing! Which is odd!
Below is the function I'm using. Which does work! I have no problems getting a thumbnail out of...Last edited by MrBiggZ; Aug 10, 2019, 02:24 PM.
-
Saving an canvas image from an iPad
Heya fellow devs!
I've been trying to make a digital signature pad for the past few weeks, but have been running into the issue of saving canvas "images" to the server from a touch interface. Despite the image data sending perfectly fine when testing from Visual Studio and from...
-
How to optimise the speed of my html website
Hi I have developed a website In HTML But its getting slow in image uploading so please let me know
-
How to save bmp (image) to file
private void add_Video_Image(string sFullname_Path_of_Video)
{
//*create mediaplayer in memory and jump to position
MediaPlayer mediaPlayer = new MediaPlayer();
mediaPlayer.MediaOpened += new EventHandler(mediaplayer_OpenMedia);
mediaPlayer.ScrubbingEnabled...
-
God this is killing me - owl carousel and stopping cursor: zoom-in
https://www.temporary-url.com/A7B013
click a thumbnail under the main product image > when that thumbnail loads as the main image it becomes clickable and when clicked, shows a full screen zoom - client wants this switched off but I cannot see where to do this??????
...
-
Captcha Image in PHP
You can add Catcha Image in PHP forms, this is an example for PHP contact form:
PHP Code:session_start();
$random_alpha = md5(rand());
$captcha_code = substr($random_alpha, 0, 6);
$_SESSION["captcha_code"] = $captcha_code;
$target_layer = imagecreatetruecolor(70,30);