This beautiful Bootstrap Masonry Gallery combines the Bootstrap framework with Masonry, Animate.css and random photos from Unsplash. Images are preloaded with ImagesLoaded and a Bootstrap preloader icon is used. Image sizes are also randomized.
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<vector android:height="48.0dip" android:width="48.0dip" android:viewportWidth="48.0" android:viewportHeight="48.0" | |
xmlns:android="http://schemas.android.com/apk/res/android"> | |
<group android:name="icon" android:translateX="24.0" android:translateY="24.0"> | |
<group android:name="icon_pivot" android:translateX="-24.15" android:translateY="-24.25"> | |
<group android:name="arrows" android:scaleX="0.9" android:scaleY="0.9" android:rotation="-221.0" android:translateX="24.1" android:translateY="24.1"> | |
<group android:name="arrows_pivot" android:translateX="-24.1" android:translateY="-24.1"> | |
<path android:name="arrow_top" android:fillColor="#ffffffff" android:pathData="M 33.1499938965,5.25 c 6.5,3.10000610352 11.1999969482,9.40000915527 11.8999938965,17.0 c 0.0,0.0 3.00001525879,0.0 3.00001525879,0.0 c -1.00001525879,-12.3000030518 -11.3000030518,-22.0 -23.9000091553,-22.0 c -0.399993896484,0.0 -0.899993896484,0.0 -1.30000 |
This file contains hidden or 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
{"lastUpload":"2021-06-10T22:24:53.472Z","extensionVersion":"v3.4.3"} |
This file contains hidden or 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
<!----- loading overlay -----> | |
<div class="loading-overlay"> | |
<div class="loading__line loading__line-1"></div> | |
<div class="loading__line loading__line-2"></div> | |
</div> | |
<!----- main container -----> | |
<div class="container"> | |
<!----- navbar -----> |
This file contains hidden or 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
<html> | |
<head> | |
<title>Unsplash Photo Search App</title> | |
<link rel="stylesheet" href="main.css"> | |
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap" rel="stylesheet"> | |
</head> | |
<body> | |
<main> | |
<div class="container"> |
This file contains hidden or 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 class="container"> | |
<div id="lottie"></div> | |
<div id="controls"> | |
<h3>Animation control</h3> | |
<button onclick="animation.stop();">stop</button> | |
<button onclick="animation.play();">play</button> | |
<button onclick="animation.pause();">pause</button> | |
<button onclick="animation.setDirection(1);">forward</button> | |
<button onclick="animation.setDirection(-1);">reverse</button> |
This file contains hidden or 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 href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet"> | |
<div class="container"> | |
<p>The race for the presidency is usually decided in a small number of key battleground states that switch party allegiance between elections.</p> | |
</div> |
This file contains hidden or 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
function askForName(type, duration) { | |
var ptext = 'Please enter a name for the template\n (without spaces, special characters, capital letters, or dashes):'; | |
var name = showDialogWindow(ptext); | |
if (name) { | |
var isValid = /^[a-z0-9_]+$/.test(name); | |
if (isValid) { | |
var newName = type + name; | |
var worked = ""; | |
if (type = "post_") { worked = createCompSet(name, type, duration) } | |
else { worked = renameCompositions(name, type)}; |
This file contains hidden or 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
// Function to replace composition name | |
function findReplaceCompositionName(prefix, replaceStr) { | |
// Get the current project | |
var currentProject = app.project; | |
// Check if a project is open | |
if (currentProject) { | |
// Get all compositions in the project | |
var allComps = currentProject.rootFolder.items; |