- Progress your webapp to a PWA with PWABuilder.
- Microsoft Graph Sample "Goat Insights" sample app
- MR Multi-client Crane demo.
- Learn more about Windows MR.
- Getting started with Gaze on Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (typeof Windows !== 'undefined'&& typeof Windows.Security !== 'undefined' && typeof Windows.Security.Credentials !== 'undefined') { | |
function UploadCheck() { | |
var username = "BobBarker" + Math.random(); | |
var keycredentialmanager = Windows.Security.Credentials.KeyCredentialManager; | |
keycredentialmanager.isSupportedAsync().done(function (result) { | |
if (result == true) { | |
var retreivalstatus = keycredentialmanager.openAsync(username).done(function (result) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (typeof Windows !== 'undefined'&& typeof Windows.UI !== 'undefined' && typeof Windows.UI.Notifications !== 'undefined') { | |
// Construct the toast notification content | |
var toastContent = new Windows.Data.Xml.Dom.XmlDocument(); | |
var toast = toastContent.createElement("toast"); | |
toastContent.appendChild(toast); | |
var visual = toastContent.createElement("visual"); | |
toast.appendChild(visual); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (typeof Windows !== 'undefined' && | |
typeof Windows.UI !== 'undefined' && | |
typeof Windows.UI.Notifications !== 'undefined') { | |
// Construct the tile notification content | |
var tileContent = new Windows.Data.Xml.Dom.XmlDocument(); | |
var tile = tileContent.createElement("tile"); | |
tileContent.appendChild(tile); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.testClass { | |
width: 100%; | |
color: #fff; | |
transform: rotate(30deg); | |
-ms-transform: rotate(30deg); /* IE 9 */ | |
-webkit-transform: rotate(30deg); /* all webkit browsers */ | |
-o-transform: rotate(30deg); /* Opera */ | |
-moz-transform: rotate(30deg); /* Firefox */ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p.test{ | |
width: 45px; | |
padding:5px; | |
border: 1px solid black; | |
text-transform: uppercase; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@font-face { | |
font-family: 'Russo One'; | |
font-style: normal; | |
font-weight: 400; | |
src: local('Russo One'), local('RussoOne-Regular'), url('http://themes.googleusercontent.com/static/fonts/russoone/v1/RO6e96EC9m6OLO0tr7J3zz8E0i7KZn-EPnyo3HZu7kw.woff') format('woff'); | |
} | |
@font-face { | |
font-family: 'Trocchi'; | |
font-style: normal; | |
font-weight: 400; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@font-face { | |
font-family: 'Radley'; | |
font-style: normal; | |
font-weight: normal; | |
src: local('Radley'), url('../fonts/Radley.woff') format('woff'); | |
} | |
@font-face { | |
font-family: 'Lovers Quarrel'; | |
font-style: normal; | |
font-weight: 400; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table width="100%" border="1"> | |
<tr> | |
<th>Title</th> | |
<th>Price</th> | |
</tr> | |
<tr id="323"> | |
<td>Google Hacks</td> | |
<td>FREE</td> | |
</tr> |
NewerOlder