Hab mal schnell geschaut!! In der LockBackground.html das hier alles austauschen:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>NeoStyle (Based on "Eclectic" by Zack Schiller)</title>
<link rel="stylesheet" href="Config/LockScreen.css" type="text/css">
<script src="Config/Config.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
function updateCalendarBar() {
var theDate = new Date();
var theWeekday = theDate.getDay();
var theMonth = theDate.getMonth();
var theDay = theDate.getDate();
var weekdaysArray = new Array();
weekdaysArray[0] = "Son";
weekdaysArray[1] = "Mon";
weekdaysArray[2] = "Die";
weekdaysArray[3] = "Mit";
weekdaysArray[4] = "Don";
weekdaysArray[5] = "Fre";
weekdaysArray[6] = "Sam";
theWeekday = weekdaysArray[theWeekday];
var monthsArray = new Array();
monthsArray[0] = "Jan";
monthsArray[1] = "Feb";
monthsArray[2] = "Mär";
monthsArray[3] = "Apr";
monthsArray[4] = "Mai";
monthsArray[5] = "Jun";
monthsArray[6] = "Jul";
monthsArray[7] = "Aug";
monthsArray[8] = "Sep";
monthsArray[9] = "Okt";
monthsArray[10] = "Nov";
monthsArray[11] = "Dez";
theMonth = monthsArray[theMonth];
document.getElementById("calendarbar").innerHTML = theWeekday + ", " + theDay + " " + theMonth;
}
function updateClock() {
var theDate = new Date();
var currentHours = theDate.getHours();
if (twentyFourHourTime == false) {
if (currentHours > 12) {currentHours = currentHours - 12};
if (currentHours == "0") {
currentHours = "12";
}
}
var currentMinutes = theDate.getMinutes();
if (currentHours < 10) {currentHours = "0" + currentHours};
if (currentMinutes < 10) {currentMinutes = "0" + currentMinutes};
var formattedMinutes = String(currentMinutes);
var formattedHours = String(currentHours);
formattedMinutes = formattedMinutes.split("");
formattedHours = formattedHours.split("");
document.getElementById("hours").innerHTML = "<span></span>" + formattedHours[0] + " " + formattedHours[1] + " :";
document.getElementById("minutes").innerHTML = "<span></span>" + formattedMinutes[0] + " " + formattedMinutes[1];
}
var showWidget = "clock";
function configureUI() {
if (showWidget == "clock") {
document.getElementById("clock").style.display = "block";
updateClock();
updateCalendarBar();
setInterval("updateClock(); updateCalendarBar();", "15000");
}
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body id="NeoStyle" onload="configureUI()">
<div id="pagewrap">
<div id="backdrop">
</div>
<div id="background">
<img src="LockScreen/Background.png" width=320/>
</div>
<div id="IMG1_Group">
<div id="IMG1_Set">
<div id="clockbar">
</div>
<div id="clock">
<div id="hours">
</div>
<div id="minutes">
</div>
</div>
<div id="calendarbar">
</div>
<div id="calendar">
<div id="month">
</div>
<div id="day">
<span></span>
</div>
</div>
<div id="IMG1_Frame">
<img src="LockScreen/IMG1_Frame.png" width="191"/>
</div>
<div id="IMG1_CI">
<img src="/var/mobile/Library/SpringBoard/LockBackgroundPortrait.jpg" width="146" onerror="this.src='Images/Default.png';"/>
</div>
</div>
</div>
<div id="IMG2_Set">
<div id="IMG2_Frame">
<img src="LockScreen/IMG2_Frame.png" width="138"/>
</div>
<div id="IMG2_CI">
<img src="/var/mobile/Library/SpringBoard/LockBackgroundPortrait.jpg" width="212" onerror="this.src='Images/Default.png';"/>
</div>
</div>
<div id="IMG3_Set">
<div id="IMG3_Frame">
<img src="LockScreen/IMG3_Frame.png" width="115"/>
</div>
<div id="IMG3_CI">
<img src="/var/mobile/Library/SpringBoard/LockBackgroundPortrait.jpg" width="212" onerror="this.src='Images/Default.png';"/>
</div>
</div>
<div id="Logo">
<img src="LockScreen/Logo.png" width="172"/>
</div>
</div>
</body>
</html>
Zu 2.). Is die Logo.png
Zu 3.) kann ich dir morgen machen!!