投稿時間:2023-06-13 18:29:25 RSSフィード2023-06-13 18:00 分まとめ(37件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia News] 年収650万円超の人に聞く、転職したい企業 3位グーグル、2位ソニー、1位は? https://www.itmedia.co.jp/news/articles/2306/13/news155.html itmedia 2023-06-13 17:23:00
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders 三愛オブリ、人事システム「COMPANY」をクラウド上の新版に移行、モバイル経由で業務を遂行 | IT Leaders https://it.impress.co.jp/articles/-/24952 三愛オブリ、人事システム「COMPANY」をクラウド上の新版に移行、モバイル経由で業務を遂行ITLeaders石油やガス、航空関連事業などを手がけるエネルギー商社の三愛オブリ本社東京都千代田区は、これまで年間使ってきた人事システム「COMPANY」をクラウド版に移行する。 2023-06-13 17:52:00
python Pythonタグが付けられた新着投稿 - Qiita lidar-centerpoint-tvmをpython化 https://qiita.com/voyager/items/975e20b1235451ce3ea7 https 2023-06-13 17:24:00
js JavaScriptタグが付けられた新着投稿 - Qiita 文字列 https://qiita.com/rk26rk/items/00219081b6910b8e0202 mainstringargsscannerscan 2023-06-13 17:06:08
技術ブログ Mercari Engineering Blog メルペイ決済基盤における Source Payment による決済手段の抽象化 https://engineering.mercari.com/blog/entry/20230613-source-payment/ komatsuhellip 2023-06-13 10:00:13
技術ブログ Developers.IO Amazon EC2からMongoDB Atlasへの3つの接続方法、利用料金、考慮事項をまとめてみた https://dev.classmethod.jp/articles/connection-usage-fee-from-mongodb-atlas/ amazon 2023-06-13 08:34:52
技術ブログ Developers.IO Deploying a React Application in a Few Minutes Using AWS Amplify https://dev.classmethod.jp/articles/deploying-a-react-application-in-a-few-minutes-using-aws-amplify/ Deploying a React Application in a Few Minutes Using AWS AmplifyIntroduction Hemanth of Alliance Department here In this blog I tried Deploying a React Application in a Few 2023-06-13 08:00:46
技術ブログ Developers.IO Tableau ServerからBigQueryに接続してみた(サイト単位) https://dev.classmethod.jp/articles/tableau-server-site-bigquery/ tableauserve 2023-06-13 08:00:32
海外TECH DEV Community How to Create a Spotlight Card Hover Effect with Tailwind CSS https://dev.to/cruip_com/how-to-create-a-spotlight-card-hover-effect-with-tailwind-css-4moh How to Create a Spotlight Card Hover Effect with Tailwind CSS Live Demo Download Welcome to this tutorial where we ll take you on a journey to create an eye catching spotlight card hover effect using Tailwind CSS If you re new to this trending effect we recommend checking out the live demo or our Dark Next js landing page template called Stellar To begin we ll create the spotlight card using pure HTML and vanilla JavaScript After that we ll take it a step further by showing you how to create a reusable component for Next js and Vue Quick navigationHTML VersionNextjs VersionVue VersionLet s get started Create the spotlight effect with HTML and vanilla JavaScriptAs we usually do in our tutorials we will start by creating a basic HTML document that will contain the structure of our animation Then we will write the JavaScript code in an external JS file lt DOCTYPE html gt lt html lang en gt lt head gt lt meta charset utf gt lt title gt Spotlight Effect lt title gt lt meta name viewport content width device width initial scale gt lt link rel preconnect href gt lt link rel preconnect href crossorigin gt lt link href wght amp display swap rel stylesheet gt lt script src gt lt script gt lt script gt tailwind config theme extend fontFamily inter Inter sans serif lt script gt lt head gt lt body class relative font inter antialiased gt lt main class relative min h screen flex flex col justify center bg slate overflow hidden gt lt div class w full max w xl mx auto px md px py gt lt Cards container gt lt div class max w sm mx auto grid gap lg grid cols items start lg max w none group gt lt Card gt lt Card gt lt Card gt lt div gt lt End Cards container gt lt div gt lt main gt lt script src spotlight effect js gt lt script gt lt body gt lt html gt We ve created a very simple structure with a container that will hold our cards Now let s start with coding one card and then we ll duplicate it to create the other two lt div class relative h full bg slate rounded xl p px before absolute before w before h before left before top before bg slate before rounded full before opacity before pointer events none before transition opacity before duration before translate x var mouse x before translate y var mouse y before group hover opacity before z before blur px after absolute after w after h after left after top after bg indigo after rounded full after opacity after pointer events none after transition opacity after duration after translate x var mouse x after translate y var mouse y after hover opacity after z after blur px overflow hidden gt lt Before pseudo element gt lt Card content gt lt div class relative h full bg slate p pb rounded inherit z overflow hidden gt lt Radial gradient gt lt div class absolute bottom translate y left translate x pointer events none z w aspect square aria hidden true gt lt div class absolute inset translate z bg slate rounded full blur px gt lt div gt lt div gt lt div class flex flex col h full items center text center gt lt Image gt lt div class relative inline flex gt lt div class w h absolute inset m auto translate y blur xl z rounded full bg indigo aria hidden true gt lt div gt lt img class inline flex src card png width height alt Card gt lt div gt lt Text gt lt div class grow mb gt lt h class text xl text slate font bold mb gt Amazing Integration lt h gt lt p class text sm text slate gt Quickly apply filters to refine your issues lists and create custom views lt p gt lt div gt lt a class inline flex justify center items center whitespace nowrap rounded lg bg slate hover bg slate border border slate px py text sm font medium text slate focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration href gt lt svg class fill slate mr xmlns width height gt lt path d M A Vh a l A Hva l a l ZM A Vh a L A Ha h a l A Hva l a l ZM h a l A Ha Z gt lt svg gt lt span gt Connect lt span gt lt a gt lt div gt lt div gt lt After pseudo element gt lt div gt We ve added a lot of classes to the card but don t worry we ll go through them one by one Add a card borderIn our first div we ve added a bg slate to define a dark background color Then we ve added a p px class to add a px padding to the card and the card content has the same background color of the page Doing that we re creating a fake px border around the card The reason why we re not using conventional CSS borders is that they won t allow us to create the effect we want to achieve Now let s move on with the before and after pseudo elements We will use the before and after prefixes provided by Tailwind CSS to create them and define their style The before pseudo element will be used to lighten the borders of our cards on mouse hover while the after pseudo element will be used for the spotligh effect above the card Use the before pseudo element for the card borderLet s see how it works the before pseudo element It s a layer placed below the card content and it s absolutely positioned to cover the entire card It s visible for px on the card sides and that “lightens the card borders with a lighter gray color slate on mouse hover The key Tailwind CSS classes of this element are before opacity before group hover opacity the before pseudo element is hidden by default and it s visible only when the card container is hovered Note that we re using a Tailwind CSS group hover variant so you want to make sure to add the group class to the card parent element before translate x var mouse x before translate y var mouse y this class defines the position of the before pseudo element We re using Tailwind s arbitrary properties to set the translate x and translate y CSS properties to the mouse position This way the before pseudo element will follow the mouse cursor Use the after element for the spotlightThe after pseudo element is used to create the spotlight effect It s a layer placed above the card content and it s absolutely positioned to cover the entire card The code looks much like the before pseudo element but there are a few differences The blurred circle looks a bit bigger after w after h The background color is different after bg indigo and the target opacity is lower after hover opacity We ll make the spotlight appear when hovering the single card not the card container as we did for the before pseudo elementCool Now when you hover the card you should see the spotlight effect and the card borders lightening in the top left corner As you may guess we want to animate the spotlight effect so let s add some JavaScript Make the spotlight follow the mouse cursorAs you already know we used translate x var mouse x and translate y var mouse y to set the position of both before and after pseudo element In other words we used mouse x and mouse x CSS variables to set the position of the elements instead of using a fixed value Now we want to update the value of those CSS variables on mouse move so that the spotlight will follow the mouse cursor We ll use a bit of JavaScript to do that Let s create a JavaScript class called Spotlight inside our spotlight effect js file Cards spotlight class Spotlight constructor containerElement this container containerElement this cards Array from this container children this mouse x y this containerSize w h this initContainer this initContainer bind this this onMouseMove this onMouseMove bind this this init initContainer this containerSize w this container offsetWidth this containerSize h this container offsetHeight onMouseMove event const clientX clientY event const rect this container getBoundingClientRect const w h this containerSize const x clientX rect left const y clientY rect top const inside x lt w amp amp x gt amp amp y lt h amp amp y gt if inside this mouse x x this mouse y y this cards forEach card gt const cardX card getBoundingClientRect left rect left this mouse x const cardY card getBoundingClientRect top rect top this mouse y card style setProperty mouse x cardX px card style setProperty mouse y cardY px init this initContainer window addEventListener resize this initContainer window addEventListener mousemove this onMouseMove Init Spotlight const spotlights document querySelectorAll data spotlight spotlights forEach spotlight gt new Spotlight spotlight We won t go into the details of the code but here s a quick overview of what it does It creates a Spotlight instance for each element with the data spotlight attribute which is supposed to be the container holding the cards When hovering the card container it sets mouse x and mouse y CSS variables on each card It updates mouse x and mouse y values on mouse move but only if the mouse cursor is inside the card containerThat way the translate x and translate y values of the before and after pseudo elements will be updated on mouse move and the spotlight will follow the mouse cursor Finally ensure to add the data spotlight attribute to the card container and add the cards as first level children of the container lt div class max w sm mx auto grid gap lg grid cols items start lg max w none group data spotlight gt lt Card gt lt div class relative h full bg slate rounded xl p px before absolute before w before h before left before top before bg slate before rounded full before opacity before pointer events none before transition opacity before duration before translate x var mouse x before translate y var mouse y before group hover opacity before z before blur px after absolute after w after h after left after top after bg indigo after rounded full after opacity after pointer events none after transition opacity after duration after translate x var mouse x after translate y var mouse y after hover opacity after z after blur px overflow hidden gt lt div class relative h full bg slate p pb rounded inherit z overflow hidden gt lt Radial gradient gt lt div class absolute bottom translate y left translate x pointer events none z w aspect square aria hidden true gt lt div class absolute inset translate z bg slate rounded full blur px gt lt div gt lt div gt lt div class flex flex col h full items center text center gt lt Image gt lt div class relative inline flex gt lt div class w h absolute inset m auto translate y blur xl z rounded full bg indigo aria hidden true gt lt div gt lt img class inline flex src card png width height alt Card gt lt div gt lt Text gt lt div class grow mb gt lt h class text xl text slate font bold mb gt Amazing Integration lt h gt lt p class text sm text slate gt Quickly apply filters to refine your issues lists and create custom views lt p gt lt div gt lt a class inline flex justify center items center whitespace nowrap rounded lg bg slate hover bg slate border border slate px py text sm font medium text slate focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration href gt lt svg class fill slate mr xmlns width height gt lt path d M A Vh a l A Hva l a l ZM A Vh a L A Ha h a l A Hva l a l ZM h a l A Ha Z gt lt svg gt lt span gt Connect lt span gt lt a gt lt div gt lt div gt lt div gt lt Card gt lt div class relative h full bg slate rounded xl p px before absolute before w before h before left before top before bg slate before rounded full before opacity before pointer events none before transition opacity before duration before translate x var mouse x before translate y var mouse y before group hover opacity before z before blur px after absolute after w after h after left after top after bg indigo after rounded full after opacity after pointer events none after transition opacity after duration after translate x var mouse x after translate y var mouse y after hover opacity after z after blur px overflow hidden gt lt div class relative h full bg slate p pb rounded inherit z overflow hidden gt lt Radial gradient gt lt div class absolute bottom translate y left translate x pointer events none z w aspect square aria hidden true gt lt div class absolute inset translate z bg slate rounded full blur px gt lt div gt lt div gt lt div class flex flex col h full items center text center gt lt Image gt lt div class relative inline flex gt lt div class w h absolute inset m auto translate y blur xl z rounded full bg indigo aria hidden true gt lt div gt lt img class inline flex src card png width height alt Card gt lt div gt lt Text gt lt div class grow mb gt lt h class text xl text slate font bold mb gt Amazing Integration lt h gt lt p class text sm text slate gt Quickly apply filters to refine your issues lists and create custom views lt p gt lt div gt lt a class inline flex justify center items center whitespace nowrap rounded lg bg slate hover bg slate border border slate px py text sm font medium text slate focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration href gt lt svg class fill slate mr xmlns width height gt lt path d M A Vh a l A Hva l a l ZM A Vh a L A Ha h a l A Hva l a l ZM h a l A Ha Z gt lt svg gt lt span gt Connect lt span gt lt a gt lt div gt lt div gt lt div gt lt Card gt lt div class relative h full bg slate rounded xl p px before absolute before w before h before left before top before bg slate before rounded full before opacity before pointer events none before transition opacity before duration before translate x var mouse x before translate y var mouse y before group hover opacity before z before blur px after absolute after w after h after left after top after bg indigo after rounded full after opacity after pointer events none after transition opacity after duration after translate x var mouse x after translate y var mouse y after hover opacity after z after blur px overflow hidden gt lt div class relative h full bg slate p pb rounded inherit z overflow hidden gt lt Radial gradient gt lt div class absolute bottom translate y left translate x pointer events none z w aspect square aria hidden true gt lt div class absolute inset translate z bg slate rounded full blur px gt lt div gt lt div gt lt div class flex flex col h full items center text center gt lt Image gt lt div class relative inline flex gt lt div class w h absolute inset m auto translate y blur xl z rounded full bg indigo aria hidden true gt lt div gt lt img class inline flex src card png width height alt Card gt lt div gt lt Text gt lt div class grow mb gt lt h class text xl text slate font bold mb gt Amazing Integration lt h gt lt p class text sm text slate gt Quickly apply filters to refine your issues lists and create custom views lt p gt lt div gt lt a class inline flex justify center items center whitespace nowrap rounded lg bg slate hover bg slate border border slate px py text sm font medium text slate focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration href gt lt svg class fill slate mr xmlns width height gt lt path d M A Vh a l A Hva l a l ZM A Vh a L A Ha h a l A Hva l a l ZM h a l A Ha Z gt lt svg gt lt span gt Connect lt span gt lt a gt lt div gt lt div gt lt div gt lt div gt Create a reusable Spotlight component for Next jsNow that we have a working spotlight effect let s create a reusable component for Next js with TypeScript support The component we are going to build is available in our GitHub repository that includes all Next js examples from our tutorials Let s create a new file called spotlight tsx inside the components folder Since we have a container and some cards inside it we are going to create two components for them Spotlight is the main component and it handles the full logic SpotlightCard is just a wrapper for the card content It accepts a className prop that will be applied to the card container and a children prop that will be the card content use client import React useRef useState useEffect from react import MousePosition from utils mouse position type SpotlightProps children React ReactNode className string export default function Spotlight children className SpotlightProps const containerRef useRef lt HTMLDivElement gt null const mousePosition MousePosition const mouse useRef lt x number y number gt x y const containerSize useRef lt w number h number gt w h const boxes setBoxes useState lt Array lt HTMLElement gt gt useEffect gt containerRef current amp amp setBoxes Array from containerRef current children map el gt el as HTMLElement useEffect gt initContainer window addEventListener resize initContainer return gt window removeEventListener resize initContainer setBoxes useEffect gt onMouseMove mousePosition const initContainer gt if containerRef current containerSize current w containerRef current offsetWidth containerSize current h containerRef current offsetHeight const onMouseMove gt if containerRef current const rect containerRef current getBoundingClientRect const w h containerSize current const x mousePosition x rect left const y mousePosition y rect top const inside x lt w amp amp x gt amp amp y lt h amp amp y gt if inside mouse current x x mouse current y y boxes forEach box gt const boxX box getBoundingClientRect left rect left mouse current x const boxY box getBoundingClientRect top rect top mouse current y box style setProperty mouse x boxX px box style setProperty mouse y boxY px return lt div className className ref containerRef gt children lt div gt type SpotlightCardProps children React ReactNode className string export function SpotlightCard children className SpotlightCardProps return lt div className relative h full bg slate rounded xl p px before absolute before w before h before left before top before bg slate before rounded full before opacity before pointer events none before transition opacity before duration before translate x var mouse x before translate y var mouse y before group hover opacity before z before blur px after absolute after w after h after left after top after bg indigo after rounded full after opacity after pointer events none after transition opacity after duration after translate x var mouse x after translate y var mouse y after hover opacity after z after blur px overflow hidden className gt children lt div gt As you can see the code looks much like the one we used in the previous section We ve just added some TypeScript annotations and imported the mouse position tsx component that we previously created for another tutorial to get the mouse position We can now import and use them in a page or in another component just like this lt Spotlight className max w sm mx auto grid gap lg grid cols items start lg max w none group gt Card lt SpotlightCard gt lt div className relative h full bg slate p pb rounded inherit z overflow hidden gt Radial gradient lt div className absolute bottom translate y left translate x pointer events none z w aspect square aria hidden true gt lt div className absolute inset translate z bg slate rounded full blur px gt lt div gt lt div gt lt div className flex flex col h full items center text center gt Image lt div className relative inline flex gt lt div className w h absolute inset m auto translate y blur xl z rounded full bg indigo aria hidden true gt lt div gt lt Image className inline flex src Card width height alt Card gt lt div gt Text lt div className grow mb gt lt h className text xl text slate font bold mb gt Amazing Integration lt h gt lt p className text sm text slate gt Quickly apply filters to refine your issues lists and create custom views lt p gt lt div gt lt a className inline flex justify center items center whitespace nowrap rounded lg bg slate hover bg slate border border slate px py text sm font medium text slate focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration href gt lt svg className fill slate mr xmlns width height gt lt path d M A Vh a l A Hva l a l ZM A Vh a L A Ha h a l A Hva l a l ZM h a l A Ha Z gt lt svg gt lt span gt Connect lt span gt lt a gt lt div gt lt div gt lt SpotlightCard gt Card lt SpotlightCard gt lt div className relative h full bg slate p pb rounded inherit z overflow hidden gt Radial gradient lt div className absolute bottom translate y left translate x pointer events none z w aspect square aria hidden true gt lt div className absolute inset translate z bg slate rounded full blur px gt lt div gt lt div gt lt div className flex flex col h full items center text center gt Image lt div className relative inline flex gt lt div className w h absolute inset m auto translate y blur xl z rounded full bg indigo aria hidden true gt lt div gt lt Image className inline flex src Card width height alt Card gt lt div gt Text lt div className grow mb gt lt h className text xl text slate font bold mb gt Amazing Integration lt h gt lt p className text sm text slate gt Quickly apply filters to refine your issues lists and create custom views lt p gt lt div gt lt a className inline flex justify center items center whitespace nowrap rounded lg bg slate hover bg slate border border slate px py text sm font medium text slate focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration href gt lt svg className fill slate mr xmlns width height gt lt path d M A Vh a l A Hva l a l ZM A Vh a L A Ha h a l A Hva l a l ZM h a l A Ha Z gt lt svg gt lt span gt Connect lt span gt lt a gt lt div gt lt div gt lt SpotlightCard gt Card lt SpotlightCard gt lt div className relative h full bg slate p pb rounded inherit z overflow hidden gt Radial gradient lt div className absolute bottom translate y left translate x pointer events none z w aspect square aria hidden true gt lt div className absolute inset translate z bg slate rounded full blur px gt lt div gt lt div gt lt div className flex flex col h full items center text center gt Image lt div className relative inline flex gt lt div className w h absolute inset m auto translate y blur xl z rounded full bg indigo aria hidden true gt lt div gt lt Image className inline flex src Card width height alt Card gt lt div gt Text lt div className grow mb gt lt h className text xl text slate font bold mb gt Amazing Integration lt h gt lt p className text sm text slate gt Quickly apply filters to refine your issues lists and create custom views lt p gt lt div gt lt a className inline flex justify center items center whitespace nowrap rounded lg bg slate hover bg slate border border slate px py text sm font medium text slate focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration href gt lt svg className fill slate mr xmlns width height gt lt path d M A Vh a l A Hva l a l ZM A Vh a L A Ha h a l A Hva l a l ZM h a l A Ha Z gt lt svg gt lt span gt Connect lt span gt lt a gt lt div gt lt div gt lt SpotlightCard gt lt Spotlight gt Create a Vue Spotlight componentAs a final step we are going to create a reusable component for Vue with TypeScript support that is available in our GitHub repository which includes all the examples from the Cruip tutorials Let s create a new file called Spotlight vue inside the components folder lt script setup lang ts gt import ref onMounted onBeforeUnmount reactive watch from vue import useMousePosition from utils MousePosition const containerRef ref lt HTMLCanvasElement null gt null const mousePosition useMousePosition const mouse reactive lt x number y number gt x y const containerSize reactive lt w number h number gt w h const boxes ref lt any gt onMounted gt if containerRef value boxes value Array from containerRef value children initContainer window addEventListener resize initContainer onBeforeUnmount gt window removeEventListener resize initContainer watch gt mousePosition value gt onMouseMove const initContainer gt if containerRef value containerSize w containerRef value offsetWidth containerSize h containerRef value offsetHeight const onMouseMove gt if containerRef value const rect containerRef value getBoundingClientRect const w h containerSize const x mousePosition value x rect left const y mousePosition value y rect top const inside x lt w amp amp x gt amp amp y lt h amp amp y gt if inside mouse x x mouse y y boxes value forEach box gt const boxX box getBoundingClientRect left rect left mouse x const boxY box getBoundingClientRect top rect top mouse y box style setProperty mouse x boxX px box style setProperty mouse y boxY px lt script gt lt template gt lt div ref containerRef gt lt slot gt lt slot gt lt div gt lt template gt As you can see we are using the MousePosition ts component that we previously built for the particle animation tutorial which gets the mouse coordinates Then we need a separate component for each box which we are going to call SpotlightCard vue lt template gt lt div class relative h full bg slate rounded xl p px before absolute before w before h before left before top before bg slate before rounded full before opacity before pointer events none before transition opacity before duration before translate x var mouse x before translate y var mouse y before group hover opacity before z before blur px after absolute after w after h after left after top after bg indigo after rounded full after opacity after pointer events none after transition opacity after duration after translate x var mouse x after translate y var mouse y after hover opacity after z after blur px overflow hidden gt lt slot gt lt slot gt lt div gt lt template gt Finally we can use the Spotlight vue and SpotlightCard vue components in our pages lt Spotlight class max w sm mx auto grid gap lg grid cols items start lg max w none group gt lt Card gt lt SpotlightCard gt lt div class relative h full bg slate p pb rounded inherit z overflow hidden gt lt Radial gradient gt lt div class absolute bottom translate y left translate x pointer events none z w aspect square aria hidden true gt lt div class absolute inset translate z bg slate rounded full blur px gt lt div gt lt div gt lt div class flex flex col h full items center text center gt lt Image gt lt div class relative inline flex gt lt div class w h absolute inset m auto translate y blur xl z rounded full bg indigo aria hidden true gt lt div gt lt img class inline flex src Card width height alt Card gt lt div gt lt Text gt lt div class grow mb gt lt h class text xl text slate font bold mb gt Amazing Integration lt h gt lt p class text sm text slate gt Quickly apply filters to refine your issues lists and create custom views lt p gt lt div gt lt a class inline flex justify center items center whitespace nowrap rounded lg bg slate hover bg slate border border slate px py text sm font medium text slate focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration href gt lt svg class fill slate mr xmlns width height gt lt path d M A Vh a l A Hva l a l ZM A Vh a L A Ha h a l A Hva l a l ZM h a l A Ha Z gt lt svg gt lt span gt Connect lt span gt lt a gt lt div gt lt div gt lt SpotlightCard gt lt Card gt lt SpotlightCard gt lt div class relative h full bg slate p pb rounded inherit z overflow hidden gt lt Radial gradient gt lt div class absolute bottom translate y left translate x pointer events none z w aspect square aria hidden true gt lt div class absolute inset translate z bg slate rounded full blur px gt lt div gt lt div gt lt div class flex flex col h full items center text center gt lt Image gt lt div class relative inline flex gt lt div class w h absolute inset m auto translate y blur xl z rounded full bg indigo aria hidden true gt lt div gt lt img class inline flex src Card width height alt Card gt lt div gt lt Text gt lt div class grow mb gt lt h class text xl text slate font bold mb gt Amazing Integration lt h gt lt p class text sm text slate gt Quickly apply filters to refine your issues lists and create custom views lt p gt lt div gt lt a class inline flex justify center items center whitespace nowrap rounded lg bg slate hover bg slate border border slate px py text sm font medium text slate focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration href gt lt svg class fill slate mr xmlns width height gt lt path d M A Vh a l A Hva l a l ZM A Vh a L A Ha h a l A Hva l a l ZM h a l A Ha Z gt lt svg gt lt span gt Connect lt span gt lt a gt lt div gt lt div gt lt SpotlightCard gt lt Card gt lt SpotlightCard gt lt div class relative h full bg slate p pb rounded inherit z overflow hidden gt lt Radial gradient gt lt div class absolute bottom translate y left translate x pointer events none z w aspect square aria hidden true gt lt div class absolute inset translate z bg slate rounded full blur px gt lt div gt lt div gt lt div class flex flex col h full items center text center gt lt Image gt lt div class relative inline flex gt lt div class w h absolute inset m auto translate y blur xl z rounded full bg indigo aria hidden true gt lt div gt lt img class inline flex src Card width height alt Card gt lt div gt lt Text gt lt div class grow mb gt lt h class text xl text slate font bold mb gt Amazing Integration lt h gt lt p class text sm text slate gt Quickly apply filters to refine your issues lists and create custom views lt p gt lt div gt lt a class inline flex justify center items center whitespace nowrap rounded lg bg slate hover bg slate border border slate px py text sm font medium text slate focus visible outline none focus visible ring focus visible ring indigo dark focus visible ring slate transition colors duration href gt lt svg class fill slate mr xmlns width height gt lt path d M A Vh a l A Hva l a l ZM A Vh a L A Ha h a l A Hva l a l ZM h a l A Ha Z gt lt svg gt lt span gt Connect lt span gt lt a gt lt div gt lt div gt lt SpotlightCard gt lt Spotlight gt What do you think of the final result Isn t it beautiful We personally love it and we re not surprised that in the spotlight card hover effect has become extremely popular as it manages to make any design look fresher and more modern Feel free to apply this effect anywhere you want and also test it on a white background if you think it may be more consistent with your designs 2023-06-13 08:38:46
ラズパイ Raspberry Pi How we’re learning to explain AI terms for young people and educators https://www.raspberrypi.org/blog/explaining-ai-terms-young-people-educators/ How we re learning to explain AI terms for young people and educatorsWhat do we talk about when we talk about artificial intelligence AI It s becoming a cliche to point out that because the term AI is used to describe so many different things nowadays it s difficult to know straight away what anyone means when they say AI However it s true that without a shared understanding of The post How we re learning to explain AI terms for young people and educators appeared first on Raspberry Pi Foundation 2023-06-13 08:34:56
金融 ニッセイ基礎研究所 市区町村別「テレワーカー率」の推計(2023年) https://www.nli-research.co.jp/topics_detail1/id=75074?site=nli また、東京都心部ではハイブリッドな働き方に対応したオフィス戦略の見直しが進むが、上記の市区町村でもこうした動きが波及する可能性がありそうだ。 2023-06-13 17:40:41
海外ニュース Japan Times latest articles Japan adopts space security policy and vows to expand defense use https://www.japantimes.co.jp/news/2023/06/13/national/japan-space-strategy-china-russia/ Japan adopts space security policy and vows to expand defense useThe main pillar of the blueprint is a plan for strengthening information gathering systems to enhance the effectiveness of counterstrike capabilities 2023-06-13 17:16:27
海外ニュース Japan Times latest articles Posh Miami enclave to become U.S. soccer hub https://www.japantimes.co.jp/sports/2023/06/13/soccer/miami-fifa-messi-hub/ world 2023-06-13 17:21:15
ニュース BBC News - Home Pay rise surprise leads to forecasts of higher interest rates https://www.bbc.co.uk/news/business-65876822?at_medium=RSS&at_campaign=KARANGA interest 2023-06-13 08:33:17
ニュース BBC News - Home Senior Tory MP seeks abortion law rethink after mother jailed https://www.bbc.co.uk/news/uk-65886472?at_medium=RSS&at_campaign=KARANGA rules 2023-06-13 08:45:11
ニュース BBC News - Home US sprinter Bowie died from complications in childbirth, agent says https://www.bbc.co.uk/sport/athletics/65887510?at_medium=RSS&at_campaign=KARANGA agent 2023-06-13 08:47:20
ニュース BBC News - Home Woman found breathing in coffin at own funeral https://www.bbc.co.uk/news/world-latin-america-65886245?at_medium=RSS&at_campaign=KARANGA alive 2023-06-13 08:19:07
ニュース BBC News - Home Australia bus crash: Driver going too fast in Hunter Valley, police say https://www.bbc.co.uk/news/world-australia-65886519?at_medium=RSS&at_campaign=KARANGA hunter 2023-06-13 08:12:53
ニュース BBC News - Home NBA: Denver Nuggets beat Miami Heat to claim first NBA title https://www.bbc.co.uk/sport/basketball/65887340?at_medium=RSS&at_campaign=KARANGA NBA Denver Nuggets beat Miami Heat to claim first NBA titleThe Denver Nuggets clinch their first NBA title as Nikola Jokic scores points in a win over the Miami Heat on Monday seals a series win 2023-06-13 08:18:02
ビジネス 不景気.com きらやか銀行が取立不能おそれ、「堀正工業」弁護士一任で - 不景気com https://www.fukeiki.com/2023/06/jimoto-debt-collection7.html 東証 2023-06-13 08:38:50
GCP Google Cloud Platform Japan 公式ブログ 現場からの FinOps: FinOps ロードマップを構築する方法 https://cloud.google.com/blog/ja/topics/cost-management/how-to-build-a-finops-roadmap/ 財務部門との間で、現在のチャージバックモデルがどのようなもので、どこにギャップがあるかについて話し合う各ビジネスユニットにとってどのタグに意味があるかを話し合い、特定されたモデルとそれがどのように関係しているかを明らかにするプラットフォームチームとの間で、タグをプロジェクトやリソースなどのどこに適用するかについて話し合うプラットフォームチームのこの作業を自動化するための技術を評価するエンジニアのワークフローにタグを導入するため、エンジニアに教育とトレーニングを提供するこのワークショップの成果物を正確に予測することは常に困難ですが、まずは費用の割り当てと報告による支出の可視化と誰が正式にクラウドFinOpsの責任を負うかを定義することに最初の焦点を当てるのが一般的です。 2023-06-13 09:50:00
GCP Google Cloud Platform Japan 公式ブログ GKE アプリのトラブルシューティングに便利な Cloud Logging の 10 個の新機能(パート 1) https://cloud.google.com/blog/ja/products/management-tools/new-features-in-cloud-logging-part-1/ CloudコンソールのGoogleKubernetesEngineGKEのログ表示を改善CloudコンソールのGKEセクションの表示が改善され、ログをフィルタできるようになりましたログエントリを基軸とした操作ログエントリを固定して、関連するログを簡単に見つけられるようになりました重大度でフィルタ簡単に重大度エラーまたはそれ以上などでフィルタして、エラーログを表示できるようになりましたヒストグラムでフィルタヒストグラムを使って簡単にログをフィルタできるようになりました類似するログエントリの非表示表示類似するログを非表示にして、繰り返しを回避できます日時の新しいオプション日時をすばやく選べるオプションが追加されました新しいSEARCH関数インデックスログから文字列を検索する新しい関数が追加されました。 2023-06-13 09:40:00
GCP Google Cloud Platform Japan 公式ブログ Apigee 統合デベロッパー ポータルに Auth0 SAML ID プロバイダ(IdP)を構成 https://cloud.google.com/blog/ja/products/api-management/configuring-a-third-party-saml-identity-provider-for-apigee/ SAMLを使用したSSO認証では、IDプロバイダに登録されている既存のアカウントを使用してApigee統合デベロッパーポータルにログインでき、新しいアカウントを作成する必要がありません。 2023-06-13 09:30:00
GCP Google Cloud Platform Japan 公式ブログ BigQuery ML を利用して画像データの分類モデルを構築する https://cloud.google.com/blog/ja/products/data-analytics/build-an-image-data-classification-model-with-bigquery-ml/ このブログでは、BigQueryでの非構造化データの保存とクエリの実行、BQMLを使用した分類モデルの作成、そのモデルとヨガポーズの画像を使った予測のテストを行うことができました。 2023-06-13 09:00:00
ニュース Newsweek 電子レンジの裏に2匹の巨大ヘビ...しかも交尾中...素手で捕獲の瞬間 https://www.newsweekjapan.jp/stories/world/2023/06/2-499.php 電子レンジの裏に匹の巨大ヘビしかも交尾中素手で捕獲の瞬間オーストラリアのとある家庭の電子レンジの裏に、匹の巨大ヘビが生息していた。 2023-06-13 17:40:00
IT 週刊アスキー アプリ『五等分の花嫁』で新イベント「ごとぱずキズナフェス!三玖とともに」が6月14日より開催! https://weekly.ascii.jp/elem/000/004/140/4140773/ enish 2023-06-13 17:55:00
IT 週刊アスキー 『エグゾプライマル』第2回オープンベータテストが6月16日より開催決定! https://weekly.ascii.jp/elem/000/004/140/4140754/ 開催決定 2023-06-13 17:20:00
IT 週刊アスキー 『アドヴァンスド ファンタジアン(PC-8801mkIISR版)』が「プロジェクトEGG」で本日リリース! https://weekly.ascii.jp/elem/000/004/140/4140755/ pcmkiisr 2023-06-13 17:15:00
IT 週刊アスキー 手塚プロ、生成AI使った「ブラック・ジャック」新作 2023年秋公開へ https://weekly.ascii.jp/elem/000/004/140/4140757/ 国立研究開発法人 2023-06-13 17:15:00
IT 週刊アスキー 電子契約サービス「電子印鑑GMOサイン」を大阪府内13自治体に導入 https://weekly.ascii.jp/elem/000/004/140/4140748/ 大阪府内 2023-06-13 17:45:00
IT 週刊アスキー ヤマハ、「VOCALOID6」専用のボイスバンク「ZOLA Project(ゾラ プロジェクト)」を発売 https://weekly.ascii.jp/elem/000/004/140/4140747/ vocaloid 2023-06-13 17:30:00
IT 週刊アスキー 土地の区画が分からない「法務省登記所備付地図データ」を全国エリアで公共座標系地図に可視化 https://weekly.ascii.jp/elem/000/004/140/4140736/ 登記所 2023-06-13 17:15:00
マーケティング AdverTimes 龍角散が小学生向け教材を開発 アニメで「のどケア」を学ぶ https://www.advertimes.com/20230613/article422903/ 法人企業 2023-06-13 08:20:01
GCP Cloud Blog JA 現場からの FinOps: FinOps ロードマップを構築する方法 https://cloud.google.com/blog/ja/topics/cost-management/how-to-build-a-finops-roadmap/ 財務部門との間で、現在のチャージバックモデルがどのようなもので、どこにギャップがあるかについて話し合う各ビジネスユニットにとってどのタグに意味があるかを話し合い、特定されたモデルとそれがどのように関係しているかを明らかにするプラットフォームチームとの間で、タグをプロジェクトやリソースなどのどこに適用するかについて話し合うプラットフォームチームのこの作業を自動化するための技術を評価するエンジニアのワークフローにタグを導入するため、エンジニアに教育とトレーニングを提供するこのワークショップの成果物を正確に予測することは常に困難ですが、まずは費用の割り当てと報告による支出の可視化と誰が正式にクラウドFinOpsの責任を負うかを定義することに最初の焦点を当てるのが一般的です。 2023-06-13 09:50:00
GCP Cloud Blog JA GKE アプリのトラブルシューティングに便利な Cloud Logging の 10 個の新機能(パート 1) https://cloud.google.com/blog/ja/products/management-tools/new-features-in-cloud-logging-part-1/ CloudコンソールのGoogleKubernetesEngineGKEのログ表示を改善CloudコンソールのGKEセクションの表示が改善され、ログをフィルタできるようになりましたログエントリを基軸とした操作ログエントリを固定して、関連するログを簡単に見つけられるようになりました重大度でフィルタ簡単に重大度エラーまたはそれ以上などでフィルタして、エラーログを表示できるようになりましたヒストグラムでフィルタヒストグラムを使って簡単にログをフィルタできるようになりました類似するログエントリの非表示表示類似するログを非表示にして、繰り返しを回避できます日時の新しいオプション日時をすばやく選べるオプションが追加されました新しいSEARCH関数インデックスログから文字列を検索する新しい関数が追加されました。 2023-06-13 09:40:00
GCP Cloud Blog JA Apigee 統合デベロッパー ポータルに Auth0 SAML ID プロバイダ(IdP)を構成 https://cloud.google.com/blog/ja/products/api-management/configuring-a-third-party-saml-identity-provider-for-apigee/ SAMLを使用したSSO認証では、IDプロバイダに登録されている既存のアカウントを使用してApigee統合デベロッパーポータルにログインでき、新しいアカウントを作成する必要がありません。 2023-06-13 09:30:00
GCP Cloud Blog JA BigQuery ML を利用して画像データの分類モデルを構築する https://cloud.google.com/blog/ja/products/data-analytics/build-an-image-data-classification-model-with-bigquery-ml/ このブログでは、BigQueryでの非構造化データの保存とクエリの実行、BQMLを使用した分類モデルの作成、そのモデルとヨガポーズの画像を使った予測のテストを行うことができました。 2023-06-13 09:00: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件)