HTML5 gallery tag

hello Dreamweavers.
Whats the hmtl5 tag for gallery? Would it be called <Section>?
Thank you.

Nice discussion here:
http://stackoverflow.com/questions/12260838/what-element-should-a-gallery-be-in-html5
HTH

Similar Messages

  • FMS 4 HTTP dynamic streaming in HTML5 video Tag

    We recently purchased FMS4 and I'm in the midst of setting it up.  However, not that it's a HUGE deal, but....
    I see conflicting answers in the forums about whether or not it is possible to stream media in the HTML5 <video> tag (going back to early 2010). 
    Ideally, I'd like to stream (most of the time using flash), but for the specific browsers that support it, (chrome, ff, IE9, and select iOS devices) HTML5 video tags.
    So, can FMS 4 do that?
    <video id="something" controls="controls">
    <source src="http://video.mydomain.com/vod/myMovie.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' />
    <!--[if IE]>
    <object>blah, blah, blah
    <embed>blah blah blah</embed>
    </object>
    <![endif]-->
    </video>
    If so, how?  I gave it a shot using the above code (minus the "blah, blah, blah" ), and the video doesn't play - if all it is, is a syntax error, then please be so kind as to provide the correct syntax.
    However, if it isn't possible unless you download something else, like the File Packager for HTTP Streaming or the Origin module for HTTP Dynamic Streaming... please direct me accordingly.
    Any assistance would be greatly appreciated.
    Thank you kindly, in advance.

    To the best of my knowlege, no.
    The browser would need to support the flash media manifest file format to be able to play and HTTP stream from FMS, and I don't think any of the browser vendors have implemented it. It would be more likely that Apple's spec is adopted (HLS uses a similar structure using mpeg-ts), but that's not implemented in anything other than safari at this point.
    you -could- use the bundled apache http server to serve progressive downloads to the <video> object in the browser, but it wouldn't be a stream coming from FMS.
    More info on flash media manifest file format here:
    http://opensource.adobe.com/wiki/pages/viewpage.action?pageId=43581634

  • Play() method not implemented HTML5 audio  tag?

    Hello,
    I am trying to play a sound using the HTML5 audio-tag and Adobe Air SDK 2.5.
    This is part of the HTML5 code:
        <audio preload="auto" id="myTone">
            <source src="test.mp3">
            <source src="test.ogg">
        </audio>
    And from javascript I do:
        a = document.getElementById("myTone");
        a.play();
    Unfortunately, that doesn't work. I get this error message in the console window:
        TypeError: Result of expression 'a.play' [undefined] is not a function.
    However, when I run this code directly in Firefox 3.6.11 on my Windows XP machine, it works.
    Dito in Safari 3.2.1 on my Mac OS 10.5.6 computer.
    So apparantly, not all methods and events of the audio-tag are implemented in the Adobe AIR environment.
    Is this by design? Or is it a bug?
    I know there is another way to play sounds (I read Jeff Swartz' article - http://www.adobe.com/devnet/air/ajax/quickstart/articles/sound_in_html.html). But I think a pure HTML5 solution would be cleaner.
    Who can provide more info about this issue?
    Many thanks.
    Jay

    Hi there,
    same issue here.
    A workaround, far from perfect, is to request the base64 encoded data using an Ajax call
    and set the src attribute of the audio element to 'data:audio/mpeg;base64,' + base64encodedaudio.
    Regards

  • How add new HTML5 input tags to Insert,Form menu and Insert,Tag,HTML?

    how do I add new HTML5 input tags to the Insert,Form menu and Insert,Tag,HTML tags menus of dw cs5?
    I remember seeing some documentation about the latter, but it wasn't very good.  can't figure out how to actually implement something, so need a mentor - and I am a software developer. :-/
    http://help.adobe.com/en_US/dreamweaver/cs/extend/WS5b3ccc516d4fbf351e63e3d117f53d77c2-800 0.html
    but I am not sure what this applies to.  manual is not clear on this.

    I am removing it from my WATCHES since I find out what was wrong. In the submit.jsp, current needs to be setup instead of create.
    <jbo:Row id="myrow" datasource="ds" action="current" >
    Have a great week.
    Kamran

  • Final Cut export for HTML5 Video tag

    I need to export a video into OGG, WebM, and MP4 for use in HTML5 video tag. Is this possible in FCP or are there any good plugins/software that can export to those various formats?

    FCP can export MPEG4 and its variants such as H.264.
    Googling .mov to .ogg and webM brings up several options for other software, none of which are familiar to me.
    Here's the top hit: http://www.mirovideoconverter.com/

  • Does Dreamweaver CS6 Retail Boxed Support HTML5 video Tag?

    Hello:
    Does the retail boxed Dreamweaver 6 (Not CC) support the insertion of video into pages using the HTML5 <video> tag?  My client can't use Flash.   I found conflicting reports on the Web.
    Thanks,
    Rich Locus

    The perpetual license version of CS6 doesn't have the <video> tag built into the insert menu and it can't be added via updates. CS6 Cloud is the first version where <video> appears in the menu. Either way, you can just add it to the Snippets folder of CS6 perpetual, if you plan to use a lot of video.
    Here is the base code I use for html5 video in the older versions of DW (with Flash fallback)...
    <video width="320" height="240">
      <source src="myvideo.mp4" type="video/mp4" />
      <source src="myvideo.ogv" type="video/ogg" />
      <source src="myvideo.webm" type="video/webm" />
      <object width="320" height="240">
        <param name="movie" value="myvideo.swf" />
        <embed src="myvideo.swf" width="320" height="240"></embed>
      </object>
    </video>
    Paste that code into your source view and highlight it, then click the + button on the bottom of your Snippets window and give it a name. From there on out, you just double click that snippet to add video. Make sure you have at least two video source extensions to cover all browsers and you're good to go.
    HTML video Tag

  • HTML5 Meta Tag issue

    I have a site that is built using Project 7's Affinity Page Builder in HTML5 with a meta tag that seems to cause problems with the W3C Validator.
    The meta tag is this:
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    The Website is here:
    http://www.bobbybailbonds.net/
    Client liked the Affinity theme, Al Sparber earned his pay. But what's with the meta tag? I understand this causes Internet Exploder to not freak out when dealing with this kind of responsive layout. And I also came across a description of this as a bug in the W3C group: http://lists.w3.org/Archives/Public/public-html-admin/2013Mar/0009.html
    First question: Is there an alternative that will specifically work with Microsoft's browsers?
    Second question: Is this something that will be a known fix that is upcoming?
    Third: What happens when this is left out? What do the Microsoft browsers do?
    -Mark

    Oh, Nancy!
    I don't do Windows.
    (You did ask for this, you know)
    If you read the article, there is a php solution in the header of each page. I, personally, do like the universal solution—use it once, all pages on that web server are done.
    I had one client on an IIS server and pulled him off it. I uploaded a whole bunch of .PNG files and there were a few .PDFs that my client wanted linked. The server didn't know what the .PNG files were and didn't know what the .PDFs were, either, so it refused to serve them. Hosting provider was so slow with tech support that I pulled the site (and put it on Linux/Apache) before he got back to me. Apparently, you have to tell Windows that these are OK files to host.
    Sheesh!
    -Mark

  • Transfering Windows Photo Gallery tags to iPhoto

    Hi there everyone! I just bought a macbook . I transferred my pictures from my Vista desktop to my new macbook using an external HD. However, the tags from Windows Photo Gallery did not transfer over as keywords into iPhoto . The weird thing is some tags did transfer on a couple of pictures (around 10). Does anybody know any solutions to this?

    SecretPact:
    Welcome to the Apple Discussions and in from the Darkside. . If the keywords are written into the IPTC fields in each photo then iPhoto can read them. But they have to be embedded into each file by Windows Photo Gallery. If you can go back to WPG and see if there's an option to write the metadata to the files and do it, you can reimport them and hopefully get the keywords to import. Try it on one or two photo that did not show the keywords first.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Does ADF supports using HTML5 canvas tag?

    Hi
    My use case is to render the PDF using canvas tag introduced in HTML5 and java script. but I could not find any ADF faces component with Canvas behavior so I thought of using html canvas tag in a jsff page directly
    I am new to JDeveloper so please let me know is there a way to use HTML5 tags directly on .jsff page?
    Thanks,
    Suresh K

    I'm not aware of y component in adf that supports canvas. You can try to include yout html in f:verbatim tags and see what you get.
    Timo

  • HTML5 new tags vs. Flash

    Everyone is talking about HTML5 killer... I was wondering what is the  bottom line here?
    Does HTML5 with its new tags offers opening  .swf files without needing to have plug-in?
    If that is true then I  understand why they say "killer" but not Flash killer, this is Flash  Player killer then which would basically be good, nobody would need  Flash Player and Flash would still work.
    But can anyone tell me what is true here for real ?

    The <video> tag just simplifies the markup for including video in a web page. No more <object> and <embed>.
    The type of supported video depends on the browsers and their codecs.
    Re: H.264 support:
    IE9: Yes
    http://www.slashgear.com/microsoft-pushing-h-264-html5-video-in-ie9-flash-has-reliability- security-performance-issues-3083836/
    Firefox: not sure
    http://support.mozilla.com/en-US/forum/1/562286
    Chrome: Yes
    http://arstechnica.com/microsoft/news/2010/04/html5-video-in-internet-explorer-9-h264-and- h264-alone.ars
    Opera: Yes
    http://dev.opera.com/articles/view/introduction-html5-video/

  • How do I get my HTML5 audio tag to work in Firefox 7.0.1, currently it doesn't even display the alternate text when the player cannot play.

    This is my implementation of the audio tag.
    <pre><nowiki><div class="music_player" oncontextmenu="return false;">
    <audio autoplay="autoplay" controls="controls" preload="auto">
    <source src="sample.ogg" />
    <source src="sample.mp3" />
    <span id="audio_error">This website has an audio sample, but cannot play using this browser.
    </span>
    </audio>
    </div></nowiki></pre>

    Make sure that the server sends the ogg file with a supported MIME type.
    * https://developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements
    * https://developer.mozilla.org/en/Configuring_servers_for_Ogg_media

  • HTML5 audio tag problem iOS 3.2.2

    Hi everyone,
    We've been developing web based applications for the iPad in HTML5 and we have come across a problem in that mp3 files play on an endless loop, when we only want them to play once. We've tested audio file playback with m4a files and have had success with audio only playing once, but we want to be able to do this with mp3 files.
    Any help would be greatly appreciated.
    Cheers,
    Ben

    You might want to try a developers forum. You posted in a users forum.
    http://developer.apple.com/devforums/

  • Html5 del tag support

    Hi,
    I am very disappointed by the way that Mozilla Firefox support <del> tag.
    Please, try to display the code below with Firefox then Safari : you will get why I mention that Firefox has a wrong <del> tag support :
    <pre><nowiki><!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8">
    <style>
    h1 {
    font: 3.4em/4 "Helvetica Neue";
    font-weight: 100;
    font-style: italic;
    </style>
    </head>
    <body>
    <h1>My <del>ex</del>Title</h1>
    </body>
    </html></nowiki></pre>

    I can only compare Firefox and Chrome. Seems that both place the line through the center of a lower case x (half of the x-height) when the font size is a bit larger but where they vary, Chrome aims higher and Firefox aims lower.
    Test page: http://jsfiddle.net/3futZ/
    Not sure there is any applicable standard for exactly where a line-through is drawn.
    ''Note: You can change the font-family in the Fiddle and save as a new version if you like.''

  • HTML5 video tag is not working in IE9

    Hi 
    the bellow is the code
    <video width="320" height="240" controls>
      <source src="NewFolder/Wildlife.mp4.mp4" type="video/mp4">
      <source src="NewFolder/movie.ogg" type="video/ogg">
      Your browser does not support the video tag.
    </video>

    This is the TechNet Forum for questions regarding Internet Explorer 8, 9, 10 for the IT Pro Audience. Topics covered are: Installation, Deployment, Configuration, Security, Group Policy, Management questions.
    For better assistance please ask for help in the MSDN IE Development Forums.
    Thanks & Regards,
    Vincenzo Di Russo
    Microsoft® MVP Windows Internet Explorer, Windows & Security Expert - since 2003.
    Moderator in the Microsoft Community and TechNet Forums
    My MVP Profile

  • Flash Builder 4 and the HTML5 canvas tag

    I see that in CS5 you will be able to import Flash animations into HTML5 Canvas code
    http://www.readwriteweb.com/archives/flash_now_importable_to_hmtl_canvas.php
    Is this a planned feature for Flash Builder?

    Thanks Matt for the error message.  Found a bug report for the issue with adobe.  Turns out Flash Builder 4 will not support Flex 2 SDK
    [https://bugs.adobe.com/jira/browse/FB-15688]
    Which means that we can't compile within the IDE, but can compile outside using the command line.  This will be adding yet another layer to the development process
    Matt, any news on when Flex 3 will be supported in the SDK?  With the release of Flex 4 i'd imagine it's coming up.

Maybe you are looking for

  • IPhone 4S doesn't work with car adapter

    My wife and I upgraded our 3GS phones to 4S.  We have an aftermarket iPhone adapter in our car, I don't recall the brand, but it worked fine with our Toyota Camry sound system.  We could charge our phones and play music using the factory stock CD tra

  • Snow Leopard 10.6.3 freezing during installation? Please help!

    I have a 13" Macbook with Mac OS X 10.4.11 and am trying to install Snow Leopard 10.6.3 (which I bought from the Apple store).  I am having trouble with the installation, as it freezes every time I get to a certain point in the "Installing" screen. I

  • In version 16 and 17, I can't open a list box from a site, but with version 15 (and bellow) that works just fine.

    In a site I have a box, with a list of values, but in version 16 and 17 I can´t open that. Version 15 and bellow didn't have any problems to open the list of values.

  • Appending data in excel sheet

    Hi all.. I have an excel sheet which contains 1 in first column ,"Ram" in second column .Now i need to write a php script which insert "Bangalore" into third column of the same excel sheet.Can anyone help me with this .Searched a lot in other forums

  • "Live Tile" Background on Mac

    What I'm looking for is a way to have a changing tile background on my laptop and desktop Mac's. What I'm imagining is similar to the "Shifting Tiles" screensaver on the Apple TV. I know I can set the backgrounds to change/rotate on a given interval,