• 01-09-2021, 20:03:50
    #1
    Arkadaşlar butona tıklayınca menulerin resmini çekmiyor nasıl yapabilirim 2 gün uğraştım yapamadım yardım lütfen Capture ye tıklayın sadece ortadaki buton geliyor.

    https://jsfiddle.net/alikaptan/esaru816/1/
  • 02-09-2021, 01:43:16
    #2
    Misafir adlı üyeden alıntı: mesajı görüntüle
    Arkadaşlar butona tıklayınca menulerin resmini çekmiyor nasıl yapabilirim 2 gün uğraştım yapamadım yardım lütfen Capture ye tıklayın sadece ortadaki buton geliyor.

    https://jsfiddle.net/alikaptan/esaru816/1/
    https://dosya.co/fgvw99uqolzd/index.html.html

    <!DOCTYPE HTML>
    <html lang="en-US">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    
        <title>UstaDerslik</title>
        <script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.min.js"></script> 
    <script src="https://html2canvas.hertzen.com/dist/html2canvas.min.js"></script>
        
        
    </head>
    <body>
    
    
        
        <style>
    html,
    body { height: 100%; }
    
    body {
      margin: 0;
      background: linear-gradient(#eeeeee, #cccccc);
      overflow: hidden;
    }
    
    .selector {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 140px;
      height: 140px;
      margin-top: -70px;
      margin-left: -70px;
    }
    
    .selector,
    .selector button {
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
    }
    
    .selector button {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 10px;
      background: #428bca;
      border-radius: 50%;
      border: 0;
      color: white;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
      transition: all .1s;
    }
    
    .selector button:hover { background: #3071a9; }
    
    .selector button:focus { outline: none; }
    
    .selector ul {
      position: absolute;
      list-style: none;
      padding: 0;
      margin: 0;
      top: -20px;
      right: -20px;
      bottom: -20px;
      left: -20px;
    }
    
    .selector li {
      position: absolute;
      width: 0;
      height: 100%;
      margin: 0 50%;
      -webkit-transform: rotate(-360deg);
      transition: all 0.8s ease-in-out;
    }
    
    .selector li input { display: none; }
    
    .selector li input + label {
      position: absolute;
      left: 50%;
      bottom: 100%;
      width: 0;
      height: 0;
      line-height: 1px;
      margin-left: 0;
      background: #fff;
      border-radius: 50%;
      text-align: center;
      font-size: 1px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: none;
      transition: all 0.8s ease-in-out, color 0.1s, background 0.1s;
    }
    
    .selector li input + label:hover { background: #f0f0f0; }
    
    .selector li input:checked + label {
      background: #5cb85c;
      color: white;
    }
    
    .selector li input:checked + label:hover { background: #449d44; }
    
    .selector.open li input + label {
      width: 80px;
      height: 80px;
      line-height: 80px;
      margin-left: -40px;
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
      font-size: 14px;
    }
    </style>
    
    <h1 align="center">Animated Circle Menu Demo</h1>
    
    
    <div id="hell" class="selector open">
      <ul>
        <li style="transform: rotate(0deg);">
          <input id="c1" type="checkbox">
          <label  style="transform: rotate(0deg);">Menu 1</label>
        </li>
        <li style="transform: rotate(45deg);">
          <input id="c2" type="checkbox">
          <label  style="transform: rotate(-45deg);">Menu 2</label>
        </li>
        <li style="transform: rotate(90deg);">
          <input id="c3" type="checkbox">
          <label  style="transform: rotate(-90deg);">Menu 3</label>
        </li>
        <li style="transform: rotate(135deg);">
          <input id="c4" type="checkbox">
          <label  style="transform: rotate(-135deg);">Menu 4</label>
        </li>
        <li style="transform: rotate(180deg);">
          <input id="c5" type="checkbox">
          <label  style="transform: rotate(-180deg);">Menu 5</label>
        </li>
        <li style="transform: rotate(225deg);">
          <input id="c6" type="checkbox">
          <label  style="transform: rotate(-225deg);">Menu 6</label>
        </li>
        <li style="transform: rotate(270deg);">
          <input id="c7" type="checkbox">
          <label  style="transform: rotate(-270deg);">Menu 7</label>
        </li>
        <li style="transform: rotate(315deg);">
          <input id="c8" type="checkbox">
          <label  style="transform: rotate(-315deg);">Menu 8</label>
        </li>
      </ul>
      <button>Click to toggle the menus</button>
    
        
    </div>
    
    
    
    <script>
    function takeSnapShot() {
        html2canvas(document.body).then(function(canvas) {
            var c = document.createElement('img');
            c.src=canvas.toDataURL("image/png");
        document.body.appendChild(canvas);
       });
    }
    
    </script>
    
    
    <div id="capture" style="padding: 10px; background: #f5da55">
        <h4 style="color: #000; "> Screen shot me </h4>
    </div>
    <input type="button" value="Capture" onclick="takeSnapShot()"/>
    <div id="newCanvas"></div>
    </body>
    </html>
    • RssMonster
    bunu beğendi.
    1 kişi bunu beğendi.
  • 02-09-2021, 09:08:56
    #3
    Misafir adlı üyeden alıntı: mesajı görüntüle
    https://dosya.co/fgvw99uqolzd/index.html.html

    <!DOCTYPE HTML>
    <html lang="en-US">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    
        <title>UstaDerslik</title>
        <script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.min.js"></script>
    <script src="https://html2canvas.hertzen.com/dist/html2canvas.min.js"></script>
        
        
    </head>
    <body>
    
    
        
        <style>
    html,
    body { height: 100%; }
    
    body {
      margin: 0;
      background: linear-gradient(#eeeeee, #cccccc);
      overflow: hidden;
    }
    
    .selector {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 140px;
      height: 140px;
      margin-top: -70px;
      margin-left: -70px;
    }
    
    .selector,
    .selector button {
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
    }
    
    .selector button {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 10px;
      background: #428bca;
      border-radius: 50%;
      border: 0;
      color: white;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
      transition: all .1s;
    }
    
    .selector button:hover { background: #3071a9; }
    
    .selector button:focus { outline: none; }
    
    .selector ul {
      position: absolute;
      list-style: none;
      padding: 0;
      margin: 0;
      top: -20px;
      right: -20px;
      bottom: -20px;
      left: -20px;
    }
    
    .selector li {
      position: absolute;
      width: 0;
      height: 100%;
      margin: 0 50%;
      -webkit-transform: rotate(-360deg);
      transition: all 0.8s ease-in-out;
    }
    
    .selector li input { display: none; }
    
    .selector li input + label {
      position: absolute;
      left: 50%;
      bottom: 100%;
      width: 0;
      height: 0;
      line-height: 1px;
      margin-left: 0;
      background: #fff;
      border-radius: 50%;
      text-align: center;
      font-size: 1px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: none;
      transition: all 0.8s ease-in-out, color 0.1s, background 0.1s;
    }
    
    .selector li input + label:hover { background: #f0f0f0; }
    
    .selector li input:checked + label {
      background: #5cb85c;
      color: white;
    }
    
    .selector li input:checked + label:hover { background: #449d44; }
    
    .selector.open li input + label {
      width: 80px;
      height: 80px;
      line-height: 80px;
      margin-left: -40px;
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
      font-size: 14px;
    }
    </style>
    
    <h1 align="center">Animated Circle Menu Demo</h1>
    
    
    <div id="hell" class="selector open">
      <ul>
        <li style="transform: rotate(0deg);">
          <input id="c1" type="checkbox">
          <label  style="transform: rotate(0deg);">Menu 1</label>
        </li>
        <li style="transform: rotate(45deg);">
          <input id="c2" type="checkbox">
          <label  style="transform: rotate(-45deg);">Menu 2</label>
        </li>
        <li style="transform: rotate(90deg);">
          <input id="c3" type="checkbox">
          <label  style="transform: rotate(-90deg);">Menu 3</label>
        </li>
        <li style="transform: rotate(135deg);">
          <input id="c4" type="checkbox">
          <label  style="transform: rotate(-135deg);">Menu 4</label>
        </li>
        <li style="transform: rotate(180deg);">
          <input id="c5" type="checkbox">
          <label  style="transform: rotate(-180deg);">Menu 5</label>
        </li>
        <li style="transform: rotate(225deg);">
          <input id="c6" type="checkbox">
          <label  style="transform: rotate(-225deg);">Menu 6</label>
        </li>
        <li style="transform: rotate(270deg);">
          <input id="c7" type="checkbox">
          <label  style="transform: rotate(-270deg);">Menu 7</label>
        </li>
        <li style="transform: rotate(315deg);">
          <input id="c8" type="checkbox">
          <label  style="transform: rotate(-315deg);">Menu 8</label>
        </li>
      </ul>
      <button>Click to toggle the menus</button>
    
        
    </div>
    
    
    
    <script>
    function takeSnapShot() {
        html2canvas(document.body).then(function(canvas) {
            var c = document.createElement('img');
            c.src=canvas.toDataURL("image/png");
        document.body.appendChild(canvas);
       });
    }
    
    </script>
    
    
    <div id="capture" style="padding: 10px; background: #f5da55">
        <h4 style="color: #000; "> Screen shot me </h4>
    </div>
    <input type="button" value="Capture" onclick="takeSnapShot()"/>
    <div id="newCanvas"></div>
    </body>
    </html>
    hocam çok teşekkür ediyorum. r10 artı verdim elinize sağlık.
    • ZFC
    bunu beğendi.
    1 kişi bunu beğendi.
  • 02-09-2021, 09:10:45
    #4
    Misafir adlı üyeden alıntı: mesajı görüntüle
    hocam çok teşekkür ediyorum. r10 artı verdim elinize sağlık.
    Ben teşekkür ederim hocam.