Haz 9 2016
SAP UI5 open dialog, show pop-up html external page iframe
<!DOCTYPE html> <html><head> <meta http-equiv=’X-UA-Compatible’ content=’IE=edge’ /> <meta http-equiv=’Content-Type’ content=’text/html;charset=UTF-8’/> <title>Dialog popup</title> <script id=’sap-ui-bootstrap’ type=’text/javascript’ src=’https://sapui5.netweaver.ondemand.com/resources/sap-ui-core.js’ data-sap-ui-theme=’sap_goldreflection’ data-sap-ui-libs=’sap.ui.commons,sap.ui.ux3′> <script> // SAP UI5 open dialog, show pop-up // *************************************** function OpenPopup() { var html = new sap.ui.core.HTML(); html.setContent(“<iframe src=\”http://www.karadere.com\” style=\”height:600px;width:600px;\”></iframe>”); var SozDialog = new sap.ui.commons.Dialog({modal: true}); SozDialog.setTitle(“Popup title”); SozDialog.setWidth(“650px”); SozDialog.setHeight(“650px”); SozDialog.addContent(html); SozDialog.addButton(new sap.ui.commons.Button({text: “KAPAT”, press:function(){SozDialog.close();}})); SozDialog.open(); }; </script> </head> <body onload=”OpenPopup();” class=’sapUiBody’> <div id=’content’></div> <div id=’images1′></div> </body> </html>
Ara 25 2016
HTML5 ile audio müzik çalmak
<%@ Page Language=”VB” AutoEventWireup=”false” CodeFile=”Default.aspx.vb” Inherits=”_Default” %> <!DOCTYPE html> <html xmlns=”http://www.w3.org/1999/xhtml”> <head runat=”server”> <title>Burhan KARADERE</title> </head> <body> <style media=”screen” type=”text/css”> #backgroundaudio { display: block; position: fixed; bottom: -43px; left: 5px; -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; -ms-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; transition: all 1s ease-in-out; } #backgroundaudio:hover { bottom: 0; […]
Devamı
By Burhan KARADERE • Genel • 0 • Tags: çalmak, html, html 5, html5, ile, müzik