0
votes
0answers
11 views
how to programm e video in html and css?
I'd like to make something like a video but it's more similiar to a slideshow, 'cause I want a slideshow where i don't do anything (ex: go forward or back to slides) and it is visible to all devices ...
0
votes
2answers
18 views
Add elements to non-wrapping container, overflowing on left side
I need to add elements to a container using JS. When the total width of the inner elements is bigger than the width of the wrapping DIV, the leftmost element should disappear to the left side.
I ...
1
vote
2answers
30 views
Javascript - Clipping image diagonally
I've come to a tough problem to day as I was assigned a HTML5 projects.
The project includes moving a picture on a inclined slope. I'll demonstrate this in the picture below
As you can see, I want ...
1
vote
3answers
25 views
After print function not able to click other tabs
I am using a default print function for printing, but once print function is completed i am not able to click other tabs. Print window is opening in the same page
function printReport() {
var ...
0
votes
1answer
19 views
HTML/Javascript: Getting a List of all files and subdirectories in a given directory
I am working on an interface that allows the to access the file system on the client side. The user should be able to browse through the file system, select a directory and my system will display list ...
0
votes
1answer
8 views
Drawing a series of short “in-order” lines causes non-rounded behavior
I have a drawing application. I track drawing on the canvas and then render it using something like so:
canvas.moveTo(x[0]-1, y[0]);
for(var i=0;i<x.length;i++)
{
canvas.lineTo(x[i], y[i]);
...
2
votes
0answers
35 views
Jquery not working in Windows8 HTML 5 App
I created new Windows 8 HTML 5 App. I added jquery file to it. But the Hello World! is not getting printed in TextBox
MainPage.xaml.cs
private void Browser_Loaded(object sender, RoutedEventArgs e)
...
0
votes
0answers
22 views
Jquery dialog is not opening with Jcrop
I am trying to implement jcrop with jquery dialog ui. I was unable to implement it with jquery dialog box so I did some research that what I was doing wrong and found out that someone else has faced ...
0
votes
2answers
26 views
Transitioning sorting what is displayed on webpage
Looking for a way to do something like this.
Where when you click on a section it nicely transitions them.
Would it be a Jquery plug in or done with CSS?
0
votes
1answer
14 views
kendo UI binding select elements
I'm building a simple mobile application and I want to bind html select elements to an observable kendo object.
With simple input text straightforward but with select elements am receiving a error ...
-3
votes
1answer
47 views
Building navigation from pages using javascript
I builded for my home page (index.php) a navigation bar where I can click on one of the available links. I want remains always in index.php even If I click on one link in the navigation bar. So I ...
0
votes
1answer
18 views
videojs javascript api breaks when setting options
I have the following javascript executes when the video tag has loaded via ajax, as suggested at the bottom of the following link https://github.com/videojs/video.js/blob/master/docs/setup.md
...
3
votes
1answer
31 views
Is it possible to convert an image from an external source to a base64 string client side?
I have tried to convert an image from an external source to a base64 string using html and the toDataUrl() and the canvas tag and it does not work. It throws Dom Exception 8 a security exception, ...
0
votes
0answers
20 views
Video Not Playing on iPad JavaScript
I'm trying to get an html5 video to play inside a modal box. I'm using feature detection to detect what format is supported, then prepending the video to the modal container. Here's the function that ...
0
votes
1answer
14 views
Load and Play playlist.m3u8 to START at a specific time on an iPad?
I've got this piece of code working on FF/IE, but the listener is being ignored when on an iPad. I started with the "canplay" event, but found the loadmetadata event [here][1]. Not sure how else to ...