Bei einem Gaming Pc würde ich eine Gigabyte GeForce GTX 1050 Ti OC 4G (4GB, Midrange) nehmen.Ich habe diese auch bei meinem Pc und alles läuft super.

Link: https://www.digitec.ch/de/s1/product/gigabyte-geforce-gtx-1050-ti-oc-4g-4gb-midrange-grafikkarte-5984814?gclid=EAIaIQobChMIh6fgzJCU5gIV2PhRCh0kXg2vEAQYASABEgLam_D_BwE&gclsrc=aw.ds

Oder auch eine Geforce GTX 1060 ist sehr gut,aber deutlich teurer.

Link:https://www.amazon.de/MSI-V328-001R-GDDR5-Grafikkarte-schwarz/dp/B01IOPQ1VO/ref=as_li_ss_tl?s=computers&ie=UTF8&qid=1478174755&sr=1-2&keywords=Geforce+gtx+1060&linkCode=sls

Ich hoffe ich konnte dir helfen.

Viele Grüsse

HKM17

...zur Antwort

Und hier noch der FXML Code:

<?xml version="1.0" encoding="UTF-8"?>

<?import com.jfoenix.controls.JFXButton?>
<?import com.jfoenix.controls.JFXPasswordField?>
<?import com.jfoenix.controls.JFXTextField?>
<?import de.jensd.fx.glyphs.fontawesome.FontAwesomeIcon?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.Cursor?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>

<AnchorPane fx:id="parent" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="800.0" style="-fx-background-color: white;" styleClass="parent" stylesheets="@../css/loginstyle.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="mein.pfad.fxml.MainUIController">
   <children>
      <VBox alignment="CENTER" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="400.0" style="-fx-background-color: #b1b1b1b1;">
         <children>
            <ImageView fitHeight="102.0" fitWidth="369.0" pickOnBounds="true" smooth="false">
               <image>
                  <Image url="@../image/logo.png" />
               </image>
               <VBox.margin>
                  <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
               </VBox.margin>
            </ImageView>
         </children>
      </VBox>
      <Pane layoutX="400.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="400.0" style="-fx-background-color: #FFF;">
         <children>
            <Label layoutX="42.0" layoutY="102.0" text="Welcome Back," textFill="#403f3f">
               <font>
                  <Font name="Impact" size="25.0" />
               </font>
            </Label>
            <Label layoutX="42.0" layoutY="134.0" text="Sign in to continue" textFill="#a3a3a3">
               <font>
                  <Font name="Calibri Bold" size="16.0" />
               </font>
            </Label>
            <JFXTextField focusColor="#3c3939" labelFloat="true" layoutX="58.0" layoutY="251.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="35.0" prefWidth="300.0" promptText="Email" unFocusColor="#7c7b7b">
               <font>
                  <Font size="14.0" />
               </font>
            </JFXTextField>
            <JFXPasswordField focusColor="#3c3939" labelFloat="true" layoutX="58.0" layoutY="307.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="35.0" prefWidth="300.0" promptText="Password" unFocusColor="#7c7b7b">
               <font>
                  <Font size="14.0" />
               </font>
            </JFXPasswordField>
            <Label layoutX="243.0" layoutY="361.0" styleClass="forgetBtn" text="Forget Password?" textFill="#949191">
               <font>
                  <Font name="Calibri" size="16.0" />
               </font>
            </Label>
            <JFXButton buttonType="RAISED" layoutX="58.0" layoutY="397.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="50.0" prefWidth="300.0" ripplerFill="#686363" styleClass="loginBtn" text="Login">
               <font>
                  <Font name="System Bold" size="14.0" />
               </font>
            </JFXButton>
            <Label layoutX="135.0" layoutY="480.0" text="New User?" textFill="#949191">
               <font>
                  <Font name="Calibri" size="16.0" />
               </font>
            </Label>
            <Label layoutX="212.0" layoutY="480.0" onMouseClicked="#open_registration" text="Signup" textFill="#494949">
               <font>
                  <Font name="Calibri" size="16.0" />
               </font>
               <cursor>
                  <Cursor fx:constant="HAND" />
               </cursor>
            </Label>
            <FontAwesomeIcon iconName="CLOSE" layoutX="379.0" layoutY="20.0" onMouseClicked="#close_app" size="1.5em" stroke="WHITE" styleClass="closeBtn" />
         </children>
      </Pane>
   </children>
</AnchorPane>


...zur Antwort

Fehler:

Exception in Application start method
java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:389)
    at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:328)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:767)
Caused by: java.lang.RuntimeException: Exception in Application start method
    at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:917)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$154(LauncherImpl.java:182)
    at java.lang.Thread.run(Thread.java:748)
Caused by: java.lang.NullPointerException: Location is required.
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3207)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3175)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3148)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3124)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3104)
    at javafx.fxml.FXMLLoader.load(FXMLLoader.java:3097)
    at website.builder.WebsiteBuilder.start(WebsiteBuilder.java:26)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$161(LauncherImpl.java:863)
    at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$174(PlatformImpl.java:326)
    at com.sun.javafx.application.PlatformImpl.lambda$null$172(PlatformImpl.java:295)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl.lambda$runLater$173(PlatformImpl.java:294)
    at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
    at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
    at com.sun.glass.ui.win.WinApplication.lambda$null$147(WinApplication.java:177)
    ... 1 more
Exception running application website.builder.WebsiteBuilder
...zur Antwort
Fullsite Dropdown Menü klappt nicht?

Hallo Community

Ich bin gerade an einem Mobil Fullsite Dropdown Menü dran. Ich habe mir dieses Tutorial angeschaut. Link: https://www.youtube.com/watch?v=gt8zOLQ8A0w

Aber es klappt nicht. Meine Website mit dem Dropdown Menü: https://dieweltentdecker.tk/

Code Html:

  <header>
      <div id="logo">
        <a href="./">
          <img src="img/logo.png" alt="Logo">
        </a>
      </div>

      <nav id="main-nav">       <div class="hamburger">            <i class="fa fa-bars" aria-hidden="true"></i>           <!---<div class="line"></div>           <div class="line"></div>           <div class="line"></div>---->       </div>         <ul class="nav-links">           <a href="#home"><li>Bla</li></a>           <a href="#about"><li>Bla</li></a>           <a href="#work"><li>Bla</li></a>           <a href="#contact"><li>Bla</li></a>           <li class="enb">             <a href="#"><?= $ll->getMessage("spracheg") ?></a>             <ul style="left: -10px">               <li style="margin: 0; padding: 0; width: 20px">                 <a href="language_<?= $ll->getMessage("langn") ?>.php" style="padding: 0"><?= $ll->getMessage("sprache") ?></a>               </li>             </ul>           </li>       </nav>     </header>

Code von Css:

  #logo {
    width: 90px;
    margin-left: 30px;
  }

  header nav {     position: absolute;     width: 100%;     height: 100vh;     background: #f0f0f0;     top: 35px;     left: 0;     transition: 0.5;     -webkit-transition: 0.5;     -moz-transition: 0.5;     -o-transition: 0.5;   }

  header nav ul li {     width: 100%;   }

  header nav ul li:hover {     padding-top: 0px;     background: #198508;     display: block;   }

  header nav ul {     display: block;   }

  .fa-bars {     font-size: 17px;     display: inline-block;     width: 100%;     cursor: pointer;     text-align: right;     float: right;     margin: -25px 30px 0 0;   }

  .fa-bars:hover {     opacity: 0.5;   }

  header nav ul li:hover {     background-color: #eeeeee;   }

Hkm17

...zum Beitrag

Ich weiss ich darf nicht auffordern zum antworten, aber wäre nett wenn mir jemand hilft.

PS: Ist keine Aufforderung

...zur Antwort
Fullsite Dropdown Menü klappt nicht?

Hallo Community

Ich bin gerade an einem Mobil Fullsite Dropdown Menü dran. Ich habe mir dieses Tutorial angeschaut. Link: https://www.youtube.com/watch?v=gt8zOLQ8A0w

Aber es klappt nicht. Meine Website mit dem Dropdown Menü: https://dieweltentdecker.tk/

Code Html:

  <header>
      <div id="logo">
        <a href="./">
          <img src="img/logo.png" alt="Logo">
        </a>
      </div>

      <nav id="main-nav">       <div class="hamburger">            <i class="fa fa-bars" aria-hidden="true"></i>           <!---<div class="line"></div>           <div class="line"></div>           <div class="line"></div>---->       </div>         <ul class="nav-links">           <a href="#home"><li>Bla</li></a>           <a href="#about"><li>Bla</li></a>           <a href="#work"><li>Bla</li></a>           <a href="#contact"><li>Bla</li></a>           <li class="enb">             <a href="#"><?= $ll->getMessage("spracheg") ?></a>             <ul style="left: -10px">               <li style="margin: 0; padding: 0; width: 20px">                 <a href="language_<?= $ll->getMessage("langn") ?>.php" style="padding: 0"><?= $ll->getMessage("sprache") ?></a>               </li>             </ul>           </li>       </nav>     </header>

Code von Css:

  #logo {
    width: 90px;
    margin-left: 30px;
  }

  header nav {     position: absolute;     width: 100%;     height: 100vh;     background: #f0f0f0;     top: 35px;     left: 0;     transition: 0.5;     -webkit-transition: 0.5;     -moz-transition: 0.5;     -o-transition: 0.5;   }

  header nav ul li {     width: 100%;   }

  header nav ul li:hover {     padding-top: 0px;     background: #198508;     display: block;   }

  header nav ul {     display: block;   }

  .fa-bars {     font-size: 17px;     display: inline-block;     width: 100%;     cursor: pointer;     text-align: right;     float: right;     margin: -25px 30px 0 0;   }

  .fa-bars:hover {     opacity: 0.5;   }

  header nav ul li:hover {     background-color: #eeeeee;   }

Hkm17

...zum Beitrag

Sry, der Code ist ein bisschen misslungen.

Ging leider nicht besser. Sonst könntet ihr auf meiner Website den Quelltext anschauen.

...zur Antwort
Particles.js Nur Weisses Bild keine Partikel?

Hallo Users

Ich habe ein Problem, nämlich ich möchte Particles.js verwenden.

Aber es wird nur ein weisse Seite angezeigt.

Code von Php:

  <section id="home">
      <hr>
      <h1 class="auto-input"></h1>
      <!-- Typed effect ----------------------->
      <script src="js/typed.min.js"></script>
      <script>
        var typed = new Typed(".auto-input", {
          strings: ["Die Weltentdecker"],
          typespeed: 5,
          loop: false
        });
      </script>
      <h2>Instagramer &amp; Developer</h2>
      <!-- Partikel ---------------------------------->
        <div id="particles-js"></div>
        <script src="js/particles.js"></script>
        <script src="js/app.js"></script>
      <!-- End Partikel ---------------------------------->

Code von app.js:

particlesJS ( {
  "particles": {
    "number": {
      "value": 75,
      "density": {
        "enable": true,
        "value_area": 800
      }
    },
    "color": {
      "value": "#f0f0f0"
    },
    "shape": {
      "type": "triangle",
      "stroke": {
        "width": 0,
        "color": "#000000"
      },
      "polygon": {
        "nb_sides": 5
      },
      "image": {
        "src": "img/github.svg",
        "width": 100,
        "height": 100
      }
    },
    "opacity": {
      "value": 0.4,
      "random": false,
      "anim": {
        "enable": false,
        "speed": 1,
        "opacity_min": 0.1,
        "sync": false
      }
    },
    "size": {
      "value": 2.5,
      "random": true,
      "anim": {
        "enable": false,
        "speed": 40,
        "size_min": 0.1,
        "sync": false
      }
    },
    "line_linked": {
      "enable": true,
      "distance": 140,
      "color": "#ffffff",
      "opacity": 0.4,
      "width": 1
    },
    "move": {
      "enable": true,
      "speed": 6,
      "direction": "none",
      "random": false,
      "straight": false,
      "out_mode": "out",
      "bounce": false,
      "attract": {
        "enable": false,
        "rotateX": 600,
        "rotateY": 1200
      }
    }
  },
  "interactivity": {
    "detect_on": "window",
    "events": {
      "onhover": {
        "enable": true,
        "mode": "grab"
      },
      "onclick": {
        "enable": true,
        "mode": "remove"
      },
      "resize": true
    },
    "modes": {
      "grab": {
        "distance": 202.70270270270254,
        "line_linked": {
          "opacity": 0.23969114084422644
        }
      },
      "bubble": {
        "distance": 400,
        "size": 40,
        "duration": 2,
        "opacity": 8,
        "speed": 3
      },
      "repulse": {
        "distance": 200,
        "duration": 0.4
      },
      "push": {
        "particles_nb": 4
      },
      "remove": {
        "particles_nb": 2
      }
    }
  },
  "retina_detect": true
}
);

Vielen Dank schon im Voraus.

Hkm17

PS:Sorry für die evt. Schreibfehler bin im Stress.

...zum Beitrag

Könnte mir jemand bitte schnell helfen, bräuchte es eben bis heute 23.00.Puh

...zur Antwort

CODE:

login.php :http://www.hkmworld.bplaced.net/login.txt 

geheim.php :http://www.hkmworld.bplaced.net/geheim.txt 

logout.php :http://www.hkmworld.bplaced.net/logout.txt 

HKM17

...zur Antwort