投稿時間:2022-01-31 03:17:23 RSSフィード2022-01-31 03:00 分まとめ(19件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
Azure Azureタグが付けられた新着投稿 - Qiita Jenkins Shared Librariesを使ってAzure VM上でスクリプトを実行 https://qiita.com/dg4101/items/5c301afc36337973ccb3 最後にもう一つStageを追加してterraformdestroyautoapproveと実行すると、パイプライン上でVMの作成、スクリプトの実行、VMの削除まですべて自動でできるようになります。 2022-01-31 02:34:40
海外TECH MakeUseOf How to Make Your Email Experience More Productive Using Spike https://www.makeuseof.com/how-to-make-email-productive-using-spike/ productivity 2022-01-30 17:45:12
海外TECH MakeUseOf What Kinds of Bikes and Trainers Can You Use With Zwift? https://www.makeuseof.com/kinds-bikes-trainers-use-zwift/ What Kinds of Bikes and Trainers Can You Use With Zwift Interactive cycling apps make your indoor cycling workouts feel like video games Here are the different bikes and trainers you can set up with Zwift 2022-01-30 17:30:12
海外TECH MakeUseOf The 6 Best Ways to Upskill Your Team https://www.makeuseof.com/ways-to-upskill-your-team/ future 2022-01-30 17:15:12
海外TECH DEV Community best github repo for improve and learning javascript. https://dev.to/alguercode/best-github-repo-for-improve-and-learning-javascript-3k1i best github repo for improve and learning javascript last days I am one of the best javascript resource the link I hope to add star this repository to support me 2022-01-30 17:31:41
海外TECH DEV Community best resource to find exeplined grid and flexbox properties in css https://dev.to/alguercode/best-resource-to-find-exeplined-grid-and-flexbox-properties-in-css-3k8k best resource to find exeplined grid and flexbox properties in cssthis sites serve new way of showing the grid and flexbox in concise way flexbox link grid link I hope to add star this repository to support me 2022-01-30 17:24:58
海外TECH DEV Community Throwing around text - Kinetic typography part 2: It defies gravity itself thanks to matter.js! 📃🛫🤯 https://dev.to/thormeier/throwing-around-text-kinetic-typography-part-2-it-defies-gravity-itself-thanks-to-matterjs-239e Throwing around text Kinetic typography part It defies gravity itself thanks to matter js Part of my series about kinetic typography Let s move some text around with HTML CSS and JS If you missed how I came about throwing around text and deforming it with only web stuff be sure to check out part I also want to celebrate followers Thank you for your support everyone It means so much to me and keeps me inspired to write even more Ok so this time we re using JS so much I can tell Part was CSS only but believe me once we get the mathematical options in that JS offers us we can go wild Let s get going Text falling up I consulted A Popular Search Engineagain to find some good examples Some that are a little more complex than the one we already did In the Creatopy blog I found this little Gif by Siddhart Mate Now what I like about this animation is the way the letters behave It s not necessarily the falling itself but the way they fall into each other once they reach the top bottom of the image It detaches the letters from the word essentially making them independant from the meaning they represent when they are in the correct order and position It has some very artistic touch to it And that s exactly the reason why we re rebuilding this today Rigid bodies obeying physicsSo if half the image defies gravity how would one make text obey the laws of physics in the first place Physics engines are nothing new see a ton of computer games and there sure as heck is one for JS namely matter js Let s download that first and do some boilerplating npm i matter js pathseg poly decomp lt DOCTYPE html gt lt html gt lt head gt lt head gt lt body gt lt div id left gt lt div gt lt div id right gt lt div gt lt script src node modules matter js build matter js gt lt script gt lt script src node modules pathseg pathseg js gt lt script gt lt script src example js gt lt script gt lt body gt lt html gt I also installed pathseg and poly decomp to allow for concave shapes such as the letter U and to be able to convert SVG paths to coordinates for bodies Now let s get going right away with matter js Matter js offers a lot of things First we deconstruct the Matter object first for simpler access and to see what we ll actually need const Engine Render Runner Composite Bodies Body Svg Vertices World window MatterThen instead of creating all the letters from scratch let s use an existing font instead and convert that to SVG I had to actually retrace the letters but I m sure there s some sophisticated tool out there that can do exactly that Apparently matter js doesn t really like hollow bodies when converting SVG paths to vertices const A M z const U M C L C L z const W M z const N M z const P M C L C L z const D M C L C L z const O M C L C L C L C L z const R M C L C L z Ok given they still look a bit pants when rendered but I m sure there s some way to make them render correctly Challenge Can anyone figure out what font I used Hint It s a Google Font To convert these paths to actual bodies we create a function to transform paths to vertices and then vertices to bodies const toVertices path gt const pathEl document createElementNS path pathEl setAttribute d path return Svg pathToVertices pathEl const toBody function letter const vertices toVertices letter return Bodies fromVertices vertices render fillStyle fff strokeStyle fff lineWidth Those functions can then be used to create the words as arrays of bodies const bodiesUpward toBody U toBody P toBody W toBody A toBody R toBody D const bodiesDownward toBody D toBody O toBody W toBody N toBody W toBody A toBody R toBody D Awesome Now we need to create two worlds One for the left side and one for the right side Create the enginesconst leftEngine Engine create const rightEngine Engine create Get both worldsconst leftWorld leftEngine worldconst rightWorld rightEngine world Create the render instances with the same optionsconst options wireframes false width height background const leftRender Render create element document querySelector left engine leftEngine options const rightRender Render create element document querySelector right engine leftEngine options Render run leftRender const leftRunner Runner create Runner run leftRunner leftEngine Render run rightRender const rightRunner Runner create Runner run rightRunner rightEngine These are now two different worlds we can render stuff on A world doesn t have any boundaries by default so we need to add a floor and a ceiling to the left and the right world respectively We also adjust the gravity to make things fall up and down Stuff falls downleftEngine gravity y Stuff goes uprightEngine gravity y The floor and ceiling are rectanglesWorld add leftWorld Bodies rectangle isStatic true World add rightWorld Bodies rectangle isStatic true Then we add all the letters to their respective worlds bodiesUpward forEach body gt World add leftWorld body bodiesDownward forEach body gt World add rightWorld body Now comes the fun part Positioning the letters rotating them and letting them fall Since we want this to happen over and over we introduce an interval that repositions all of the letters and lets them fall again const positionLeftBodies gt let leftY bodiesUpward forEach body gt Body setPosition body x y leftY Body setAngle body Math PI deg in Radians Important to not have any left over movement Body setVelocity body x y leftY console log leftY const positionRightBodies gt let rightY bodiesDownward forEach body gt Body setPosition body x y rightY Body setAngle body Math PI deg in Radians Important to not have any left over movement Body setVelocity body x y rightY positionLeftBodies positionRightBodies setInterval gt positionLeftBodies positionRightBodies And this is what it looks like in action And that s it for the second part of the series I hope you enjoyed reading this article as much as I enjoyed writing it If so leave a ️or a Also consider following me if you want to see how the other examples turn out I write tech articles in my free time and like to drink coffee every once in a while If you want to support my efforts you can offer me a coffee or follow me on Twitter You can also support me directly via Paypal 2022-01-30 17:22:56
海外TECH DEV Community Flexbox (CSS): Everything you need to know https://dev.to/therajatg/flexbox-css-everything-you-need-to-know-3alk Flexbox CSS Everything you need to knowSo let s get the party started Note I believe in learning by doing therefore in order to get max value out of this article I suggest you to open your code editor and copy paste the code from article and see the magic happen Flexbox stands for flexible box It provides an easy and efficient way to align items in a container Flex items elements that we are trying to align Flex container parent container that contains these flex items Main axis Axis along which we are trying to align our flex items Cross axis Axis perpendicular to main axis To better understand we ll divide flexbox properties in parts properties that apply to flex container a flex direction b flex wrap c justify content d align items Properties that apply to flex items a order b flex grow c flex shrinkNote In order to apply all the above properties one has to set the display flex in the parent container Below is the basic code on which we ll apply various properties lt DOCTYPE html gt lt html lang en gt lt head gt lt meta charset UTF gt lt meta http equiv X UA Compatible content IE edge gt lt meta name viewport content width device width initial scale gt lt title gt Document lt title gt lt style gt div background color blue border px solid black height px child background color pink border px solid black height px lt style gt lt head gt lt body gt lt div gt lt p class child gt flex item A lt p gt lt p class child gt flex item B lt p gt lt p class child gt flex item C lt p gt lt p class child gt flex item D lt p gt lt div gt lt body gt lt html gt Let s understand the properties that apply on flex container a flex direction It provides the direction in which to align the flex items lt DOCTYPE html gt lt html lang en gt lt head gt lt meta charset UTF gt lt meta http equiv X UA Compatible content IE edge gt lt meta name viewport content width device width initial scale gt lt title gt Document lt title gt lt style gt div background color blue border px solid black height px display flex flex direction row child background color pink border px solid black height px lt style gt lt head gt lt body gt lt div gt lt p class child gt flex item A lt p gt lt p class child gt flex item B lt p gt lt p class child gt flex item C lt p gt lt p class child gt flex item D lt p gt lt div gt lt body gt lt html gt p is an block level element but as soon as we gave flex direction row all flex items are arranged horizontally Although by default the flex direction is set to row so it will work even if do not provide the same although we must set display flex In the example below we set the flex direction row reverse other than those depicted above there are other flex directions as well column column reverseI advise you to try these out on your own b flex wrapThis is a very important property which let s your web app to render on any device laptop iPad phone etc by adjusting the flex items as per the size of the view port and prevent them from overflowing by default flex wrap is set to the value nowrap Let s use flex wrap wrap in the below example lt DOCTYPE html gt lt html lang en gt lt head gt lt meta charset UTF gt lt meta http equiv X UA Compatible content IE edge gt lt meta name viewport content width device width initial scale gt lt title gt Document lt title gt lt style gt div background color blue border px solid black height px display flex flex wrap wrap child background color pink border px solid black height px lt style gt lt head gt lt body gt lt div gt lt p class child gt flex item A lt p gt lt p class child gt flex item B lt p gt lt p class child gt flex item C lt p gt lt p class child gt flex item D lt p gt lt div gt lt body gt lt html gt There is also flex wrap wrap reverse in which instead of items falling below they will climb above as the view port width decreases Try it out c justify contentBy using justify content we can move the flex items across the main axis Default value of justify content is flex start Let s use justify content center in the below example lt DOCTYPE html gt lt html lang en gt lt head gt lt meta charset UTF gt lt meta http equiv X UA Compatible content IE edge gt lt meta name viewport content width device width initial scale gt lt title gt Document lt title gt lt style gt div background color blue border px solid black height px display flex justify content center child background color pink border px solid black height px lt style gt lt head gt lt body gt lt div gt lt p class child gt flex item A lt p gt lt p class child gt flex item B lt p gt lt p class child gt flex item C lt p gt lt p class child gt flex item D lt p gt lt div gt lt body gt lt html gt Let s see the output of justify content space around Now I would nudge you to try out other properties of justify content such as flex startflex endspace betweenspace evenly d align items The align items property aligns the items inside a flex container along the cross axis just like justify content does along the main axis Let s see justify content space around and align items center work together lt DOCTYPE html gt lt html lang en gt lt head gt lt meta charset UTF gt lt meta http equiv X UA Compatible content IE edge gt lt meta name viewport content width device width initial scale gt lt title gt Document lt title gt lt style gt div background color blue border px solid black height px display flex justify content space around align items center child background color pink border px solid black height px lt style gt lt head gt lt body gt lt div gt lt p class child gt flex item A lt p gt lt p class child gt flex item B lt p gt lt p class child gt flex item C lt p gt lt p class child gt flex item D lt p gt lt div gt lt body gt lt html gt The default value of align items is stretch which makes the flex items stretch across the cross axis in the flex container However it will work when the flex items have not been assigned any height Try it out Now let s see how align items center works without justify content lt DOCTYPE html gt lt html lang en gt lt head gt lt meta charset UTF gt lt meta http equiv X UA Compatible content IE edge gt lt meta name viewport content width device width initial scale gt lt title gt Document lt title gt lt style gt div background color blue border px solid black height px display flex align items center child background color pink border px solid black height px lt style gt lt head gt lt body gt lt div gt lt p class child gt flex item A lt p gt lt p class child gt flex item B lt p gt lt p class child gt flex item C lt p gt lt p class child gt flex item D lt p gt lt div gt lt body gt lt html gt Now let s understand properties that apply on flex items a orderThe order property is specified as a single number We can change order of flex items using the order property By default all flex items have order The greater the order the farther is the element along the main axis Let s see the below example lt DOCTYPE html gt lt html lang en gt lt head gt lt meta charset UTF gt lt meta http equiv X UA Compatible content IE edge gt lt meta name viewport content width device width initial scale gt lt title gt Document lt title gt lt style gt div background color blue border px solid black height px display flex align items center child background color pink border px solid black height px child nth child order lt style gt lt head gt lt body gt lt div gt lt p class child gt flex item A lt p gt lt p class child gt flex item B lt p gt lt p class child gt flex item C lt p gt lt p class child gt flex item D lt p gt lt div gt lt body gt lt html gt Since we gave flex item B order it will be pushed to the extreme right and if some other flex item has order it will get stacked after flex item B However there will be no effect if all flex items have same order does not matter if it is or some other number b flex growThe flex grow property is specified as a single number flex grow is an amazing property to have It specifies how much of the remaining space across the main axis in the flex container should be assigned to the item the flex grow factor Let s understand this with an example lt DOCTYPE html gt lt html lang en gt lt head gt lt meta charset UTF gt lt meta http equiv X UA Compatible content IE edge gt lt meta name viewport content width device width initial scale gt lt title gt Document lt title gt lt style gt div background color blue border px solid black height px display flex align items center child background color pink border px solid black height px child nth child flex grow lt style gt lt head gt lt body gt lt div gt lt p class child gt flex item A lt p gt lt p class child gt flex item B lt p gt lt p class child gt flex item C lt p gt lt p class child gt flex item D lt p gt lt div gt lt body gt lt html gt Here we assigned flex grow to flex item D and saw that it took all the remaining space If all sibling items have the same flex grow factor then all items will receive the same share of remaining space otherwise it is distributed according to the ratio defined by the different flex grow factors Let s understand this with another example lt DOCTYPE html gt lt html lang en gt lt head gt lt meta charset UTF gt lt meta http equiv X UA Compatible content IE edge gt lt meta name viewport content width device width initial scale gt lt title gt Document lt title gt lt style gt div background color blue border px solid black height px display flex align items center child background color pink border px solid black height px child nth child flex grow child nth child flex grow lt style gt lt head gt lt body gt lt div gt lt p class child gt flex item A lt p gt lt p class child gt flex item B lt p gt lt p class child gt flex item C lt p gt lt p class child gt flex item D lt p gt lt div gt lt body gt lt html gt Here we assigned flex grow to flex item C in addition to flex grow to flex item D and saw that the remaining space gets distributed according to the ratio C D defined by the different flex grow factors c flex shrinkThe flex shrink property sets the flex shrink factor of a flex item If the size of all flex items is larger than the flex container items shrink to fit according to flex shrink Unlike flex grow which lets our flex items behave in a certain way when screen size view port increases flex shrink helps with the behaviour of flex items when view port decreases Let s understand with an example We ll give flex shrink to flex item C and see what happens lt DOCTYPE html gt lt html lang en gt lt head gt lt meta charset UTF gt lt meta http equiv X UA Compatible content IE edge gt lt meta name viewport content width device width initial scale gt lt title gt Document lt title gt lt style gt div background color blue border px solid black height px display flex align items center child background color pink border px solid black height px child nth child flex shrink lt style gt lt head gt lt body gt lt div gt lt p class child gt flex item A lt p gt lt p class child gt flex item B lt p gt lt p class child gt flex item C lt p gt lt p class child gt flex item D lt p gt lt div gt lt body gt lt html gt ️Here flex shrink property sets the flex shrink factor of to flex item C and as a result as the screen gets smaller the flex item C is shrinking thrice as fast as compared to other flex items I write one article every day related to web development mainly CSS JS and React and yes you heard it right EVERY SINGLE DAY Follow me on dev to and twitter if you are learning the same my twitter handle therajatgIf you are the linkedin type let s connect Have an awesome day ahead 2022-01-30 17:12:39
海外TECH CodeProject Latest Articles Rhymz https://www.codeproject.com/Articles/5323836/Rhymz rhymzeasy 2022-01-30 17:48:00
ニュース BBC News - Home Man arrested after Man Utd suspend Mason Greenwood https://www.bbc.co.uk/news/uk-60192303?at_medium=RSS&at_campaign=KARANGA greenwoodgreater 2022-01-30 17:49:23
ニュース BBC News - Home Bloody Sunday: Families remember victims on 50th anniversary https://www.bbc.co.uk/news/uk-northern-ireland-60130409?at_medium=RSS&at_campaign=KARANGA londonderry 2022-01-30 17:16:48
ニュース BBC News - Home Salah scores one goal and sets up another to send Egypt to Afcon semis https://www.bbc.co.uk/sport/football/60100297?at_medium=RSS&at_campaign=KARANGA finals 2022-01-30 17:50:20
ニュース BBC News - Home Covid-19 in the UK: How many coronavirus cases are there in my area? https://www.bbc.co.uk/news/uk-51768274?at_medium=RSS&at_campaign=KARANGA cases 2022-01-30 17:23:38
ビジネス ダイヤモンド・オンライン - 新着記事 スケジュール管理が「上手な人」と 「下手な人」の決定的な違い - 書く瞑想 https://diamond.jp/articles/-/291878 高揚 2022-01-31 02:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 「儲からない典型」の菓子事業で、 カルビーの利益率が異常に高い理由とは - 経営指標大全 https://diamond.jp/articles/-/294558 2022-01-31 02:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 職場の問題解決力を高めるため、大野耐一が実践した指導法とは? - 経営トップの仕事 https://diamond.jp/articles/-/294611 職場の問題解決力を高めるため、大野耐一が実践した指導法とは経営トップの仕事時代や環境変化の荒波を乗り越え、永続する強い会社を築くためには、どうすればいいのか会社を良くするのも、ダメにするのも、それは経営トップのあり方にかかっているー。 2022-01-31 02:45:00
北海道 北海道新聞 ナダルが13年ぶり全豪優勝 テニス、四大大会最多21勝 https://www.hokkaido-np.co.jp/article/639625/ 男子シングル 2022-01-31 02:12:10
北海道 北海道新聞 プロ野球キャンプイン 「まん延防止」直撃、鈍い客足 有観客でも「諦めムード」 ハム本拠地 名護・国頭 https://www.hokkaido-np.co.jp/article/639610/ 新型コロナウイルス 2022-01-31 02:04:00
北海道 北海道新聞 小林陵侑4位、伊東大貴8位 W杯ジャンプ男子第19戦 https://www.hokkaido-np.co.jp/article/639627/ 伊東大貴 2022-01-31 02:04:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)