Hallo Zusammen,
ich versuche vergeblich in der folgenden html Datei die Position left und top durch zufällige Zahlen, via Javascript zu manipulieren.
Leider kenne ich mich auch nicht so besonders mit dem programmieren aus. Nach zwei Wochen suchen habe ich die Hoffnung aufgegeben es in Google zu finden.
ich versuche vergeblich in der folgenden html Datei die Position left und top durch zufällige Zahlen, via Javascript zu manipulieren.
Leider kenne ich mich auch nicht so besonders mit dem programmieren aus. Nach zwei Wochen suchen habe ich die Hoffnung aufgegeben es in Google zu finden.
- <!DOCTYPE html>
- <html>
- <script src="https://vuejs.org/js/vue.js"></script>
- <head lang="en">
- <meta charset="UTF-8">
- <title>Redeem Overlay</title>
- <script src="../API_Key.js"></script>
- <style>
- html,
- body {
- height: 100%;
- }
- html {
- display: table;
- }
- body#body {
- display: table-cell;
- position: fixed;
- left: 150px; <- diese Position und top darunter sollen zufällige Zahlen bekommen
- top: 200px;
- }
- h2 {
- color: white;
- text-shadow: -1px -1px 0 #000,
- 1px -1px 0 #000,
- -1px 1px 0 #000,
- 1px 1px 0 #000;
- }
- .fade-enter-active,
- .fade-leave-active {
- transition: opacity .5s;
- }
- .fade-enter,
- .fade-leave-to
- /* .fade-leave-active below version 2.1.8 */
- {
- opacity: 0;
- }
- </style>
- </head>
- <body id="body">
- <div class="item" id="app">
- <client-component inline-template>
- <div>
- <link v-bind:href="fontfamilyurl" rel="stylesheet" type="text/css">
- <transition name="fade">
- <div v-if="fade">
- <img v-bind:src="imageurl">
- <h2 v-bind:style="{ color: fontcolor, fontSize: fontsize + 'px', fontFamily: fontfamily, width: width + 'px', 'word-wrap': wordwrap, 'margin-top': margintop + 'px', 'margin-left': marginleft + 'px', 'line-height': lineheight}"
- v-html="text">
- </h2>
- </div>
- </transition>
- </div>
- </client-component>
- </div>
- </body>
- <script src="async.js"></script>
- <script src="newclient.js"></script>
- <script>
- new Vue({
- el: '#app',
- });
- </script>
- <script> <- dieses Script soll die Zufälligen Zahlen ausgeben.
- $(document).ready(function() {
- var bodyWidth = document.body.clientWidth
- var bodyHeight = document.body.clientHeight;
- $('#body').each(function(idx, img) { <- mit #body wollte ich auf die Zeile 19. zugreifen
- var randPosX = Math.floor((Math.random() * 1700));
- var randPosY = Math.floor((Math.random() * 800));
- console.log(randPosY);
- $(img).css('left', randPosX);
- $(img).css('top', randPosY);
- posLog.innerHTML = posXY
- });
- });
- </script>
- </html>