Windows phone 7 使用带有Cordova的Windows Phone宽瓷砖

Windows phone 7 使用带有Cordova的Windows Phone宽瓷砖,windows-phone-7,cordova,cordova-2.0.0,Windows Phone 7,Cordova,Cordova 2.0.0,使用Cordova时,如何在Windows Phone上为WideTile指定图像?不幸的是,目前不支持此选项[Wide Live Tile]。我将为WP8和WP7.8创建一个特性请求。最有可能更新版本的LiveTiles插件将登陆到以下位置 更新 更新的版本可以在这里找到 样本使用 navigator.plugins.liveTiles.updateAppTile(success, fail, { title: document.getElement

使用Cordova时,如何在Windows Phone上为WideTile指定图像?

不幸的是,目前不支持此选项[Wide Live Tile]。我将为WP8和WP7.8创建一个特性请求。最有可能更新版本的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'
        });