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
<sup><a id="back_note_2" href="nota1.html#note_2" title="Nota 2">2</a></sup> | |
<figure id="id_figuraX"> | |
<figcaption>vx</figcaption> | |
<img class="responsive-image" alt=" xxx" src="doc4-figuraX.jpg"/> | |
<figcaption class="figcaption-bottom">sss <sup><a id="back_note_11" href="nota11.html#note_11" title="Nota 11">11</a></sup> </figcaption> | |
</figure> |
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
// Divisivel por 3 = Fiz | |
// Divisível por 5 = Buzz | |
// Divisível por 3 e 5 = FizzBuzz | |
// Não divisível por 3 ou 5 = entrada | |
// não é um Número | |
const number = 3; | |
entrada = fizzBuzz(number) | |
// for (let i = 0; i < number; i++) { |
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
$('.globalSearchResultNoFoundFeedback').hide() | |
$(".globalInputSearch").keyup(function() { | |
// Retrieve the input field text and reset the count to zero | |
let filter = $(this).val(), | |
count = 0; | |
if (count == 0) { | |
$('.globalSearchResultNoFoundFeedback').hide() |
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
import React, { useState } from "react"; | |
import "./styles.css"; | |
export default function App() { | |
const [counter, setCounter] = useState(0); | |
function handlePlus() { | |
return setCounter(counter + 1); | |
} |
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
/* | |
carrega o código após carregamento da landpage | |
foi feito dessa forma, pois o popover precisa ser carregado após carregar o form do RD | |
*/ | |
window.onload = function(){ | |
const $message = '<span class="lp-popover-target" tabindex="0"> icone </span> <div class="lp-popover-content"> O projetista deve preencher os dados do formulário e enviar um link compatível (via Google Drive, Dropbox, Mega, etc) com os arquivosdo projeto no formato do software (Eberick e/ou QiBuilder) e IFC + um vídeo curto (de até 30 segundos) do modelo em realidade aumentada. </div>' | |
let $popover = $( "<div class='lp-popover'>" + $message+ "</div>" ); | |
$('label[for=rd-text_field-kcossuew].bricks-form__label').append( $popover ); | |
} |
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 //wp-looping | |
global $product; | |
$product = wc_get_product(); | |
?> | |
<?php if($product->get_stock_quantity() <= $product->get_low_stock_amount() ) : ?> | |
<span class="courses-and-events__list__card__badge">ÚLTIMAS VAGAS</span> | |
<?php endif; ?> |
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
git rm -r --cached . | |
git add . | |
git commit -m "Removing all files in .gitignore" |
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
<p class="line-clamp line-clamp-2">This is a cross-browser (pure CSS) solution that will clamp text to X number of lines with a trailing ellipsis in Webkit browsers. The `height` property is used on other browsers (along with a fading text effect) as a graceful fallback in non-Webkit browsers. The use of CSS `calc` allows for any font-size to work properly; i.e. you don't need a fixed height or a fixed font size for this to work! Play with it :-) You can change the second class to `line-clamp-[1|2|3|4|5]` and experiment with this just a little.</p> |
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
*::-webkit-scrollbar { width: 5px;} | |
*::-webkit-scrollbar-track {background: #F4F4F4;} | |
*::-webkit-scrollbar-thumb {background: #cecece;} | |
*::-webkit-scrollbar-thumb:hover {background: #c1c1c1;} | |
body{} |
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
const express = require('express'); | |
const app = express(); | |
app.get('/', (request, response)=>{ | |
return response.json({ | |
evento: 'Semana Corona Virus', | |
aluno: 'Felipe Genuino' | |
}) | |
}) |
NewerOlder