2
如何在使用Cordova時爲Windows Phone上的WideTile指定圖像?與科爾多瓦一起使用Windows Phone WIde瓷磚
如何在使用Cordova時爲Windows Phone上的WideTile指定圖像?與科爾多瓦一起使用Windows Phone WIde瓷磚
不幸的是,這個選項[Wide Live Tile]目前不支持。我將爲WP8和WP7.8創建一個功能請求。 LiveTiles插件的最有可能的更新版本將登陸到以下地方
https://github.com/apache/incubator-cordova-wp8/tree/master/plugins/www/plugins/LiveTiles
UPDATE
更新版本可以在這裏找到
https://github.com/sgrebnov/incubator-cordova-wp8/tree/master/plugins/www/plugins/LiveTiles
使用範例
navigator.plugins.liveTiles.updateAppTile(success, fail, {
title: document.getElementById('title').value,
image: 'Images/appbar.next.rest.png',
count: document.getElementById('count').value,
backTitle: 'Back title',
backContent: 'Back side',
backImage: 'Images/appbar.close.rest.png',
smallImage: 'Images/appbar.save.rest.png',
wideContent: 'This is wide content',
wideImage: 'Images/appbar.stop.rest.png',
wideBackImage: 'Images/appbar.feature.video.rest.png'
});