This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.marquee { | |
width: 450px; | |
margin: 0 auto; | |
white-space: nowrap; | |
overflow: hidden; | |
box-sizing: border-box; | |
border: 1px dotted #800000; | |
} | |
.marquee span { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Adding text to all images from folder (directory) in PHP | |
Like this: https://addtext.com | |
And this API: https://cloudinary.com/documentation/image_transformations#adding_text_captions | |
LIBRARY: https://github.com/Intervention/image |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
This example based on official documentation: | |
https://metamask.github.io/metamask-docs/API_Reference/Ethereum_Provider | |
Gist: https://gist.github.com/epexa/4ce11de71d1b40f8cb1d35567e993b53 | |
Author example: @epexa | |
--> | |
<button id="auth">authentication through metamask</button> | |
<button id="sign" style="display: none">sign</button> | |
<h2 id="status"></h2> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
This example based on official documentation: | |
https://metamask.github.io/metamask-docs/API_Reference/Ethereum_Provider | |
Gist: https://gist.github.com/epexa/9a939cf332041e18f375d35df1145c75 | |
Author example: @epexa | |
--> | |
<button id="auth">authentication through metamask</button> | |
<button id="sign" style="display: none">sign</button> | |
<h2 id="status"></h2> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="uppy"></div> | |
<button id="show-uppy-btn">Show Uppy</button> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uppy@1.0.2/dist/uppy.min.css"> | |
<script src="https://cdn.jsdelivr.net/npm/uppy@1.0.2/dist/uppy.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@8.11.7/dist/sweetalert2.all.min.js"></script> | |
<script> | |
document.addEventListener('DOMContentLoaded', () => { | |
const uppy = Uppy.Core().use(Uppy.Dashboard, { | |
target: '#uppy', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uppy@1.0.2/dist/uppy.min.css"> | |
<script src="https://cdn.jsdelivr.net/npm/uppy@1.0.2/dist/uppy.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@8.11.7/dist/sweetalert2.all.min.js"></script> | |
<script> | |
document.addEventListener('DOMContentLoaded', () => { | |
const uppy = Uppy.Core().use(Uppy.Dashboard); | |
Swal.fire({ toast: true }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ru"> | |
<head> | |
<title>Как добраться до площадки Space</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css"> | |
</head> | |
<body> | |
<div class="container-fluid"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css"> | |
<div class="modal" id="first-modal"> | |
<div class="modal-dialog"> | |
<div class="modal-content"> | |
<div class="modal-body"> | |
<p>First modal</p> | |
<button class="btn btn-success" onclick="$('#second-modal').modal('show');">Open second modal</button> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css"> | |
<div class="modal" id="first-modal"> | |
<div class="modal-dialog"> | |
<div class="modal-content"> | |
<div class="modal-body"> | |
First modal | |
</div> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css"> | |
<div class="modal" id="first-modal"> | |
<div class="modal-dialog"> | |
<div class="modal-content"> | |
<div class="modal-body"> | |
First modal | |
</div> | |
</div> | |
</div> |
NewerOlder