投稿時間:2023-05-26 19:19:37 RSSフィード2023-05-26 19:00 分まとめ(25件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
ROBOT ロボスタ 生成系AIでゲームや映像を制作する中高生向けイベント「AI×クリエイティブ1DAY」開催 ChatGPTやStable Diffusion活用 https://robotstart.info/2023/05/26/game-programming-video-production-generativeai.html 生成系AIでゲームや映像を制作する中高生向けイベント「AI×クリエイティブDAY」開催ChatGPTやStableDiffusion活用シェアツイートはてブライフイズテックは、年月日日のゴールデンウィーク期間中、中高生約名を対象に「AI×クリエイティブDAYイベント」を無料開催した。 2023-05-26 09:53:42
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 頑張っている自分にあげたいご褒美 20~40代ともに1位に選ばれたのは? https://www.itmedia.co.jp/business/articles/2305/26/news218.html itmedia 2023-05-26 18:30:00
IT ITmedia 総合記事一覧 [ITmedia News] “AI合成写真”が秒で AdobeのAIがスゴい、けど……「爆発できない」フェイク対策の是非 https://www.itmedia.co.jp/news/articles/2305/26/news224.html adobe 2023-05-26 18:02:00
TECH Techable(テッカブル) 京都フュージョニアリングが総額105億円を資金調達。核融合炉関連の開発を加速 https://techable.jp/archives/208653 株式会社 2023-05-26 09:00:18
python Pythonタグが付けられた新着投稿 - Qiita 【Paiza問題集】標準出力/実数をフォーマット指定して出力 https://qiita.com/norma2627/items/228f28355827dad0ecb0 paiza 2023-05-26 18:43:57
python Pythonタグが付けられた新着投稿 - Qiita コピペで始めるDockerアプリ集 https://qiita.com/minegishirei_v2/items/d3d669aea69b83799270 docker 2023-05-26 18:41:10
js JavaScriptタグが付けられた新着投稿 - Qiita 【SamuraiStats】日本人メジャーリーガーの成績をスクレイピング https://qiita.com/kohki_takatama/items/463007a57d26e116c20f javsscript 2023-05-26 18:39:32
Linux Ubuntuタグが付けられた新着投稿 - Qiita Debian / UbuntuのexFAT対応のUSBメモリー作成 https://qiita.com/office-itou/items/4f8456b0da5c0ccc0c2e debianubuntu 2023-05-26 18:28:20
Docker dockerタグが付けられた新着投稿 - Qiita コピペで始めるDockerアプリ集 https://qiita.com/minegishirei_v2/items/d3d669aea69b83799270 docker 2023-05-26 18:41:10
Azure Azureタグが付けられた新着投稿 - Qiita Dev Home (プレビュー) を使ってみた https://qiita.com/akiojin/items/29e6f2949a3abe2f34dd https 2023-05-26 18:49:29
Git Gitタグが付けられた新着投稿 - Qiita SourceTreeで使うgit用語とコマンド https://qiita.com/kana-nonaka/items/4c05e191c2ffcc5c24be sourcetree 2023-05-26 18:36:55
技術ブログ Developers.IO MFA 인증없이 IAM 사용자가 최초 로그인시 비밀번호를 변경 할 수 없는 경우 해결해 보자! https://dev.classmethod.jp/articles/iam-user-password-change-simple/ 2023-05-26 09:19:45
海外TECH DEV Community Crafting a modern spotlight effect with React and CSS https://dev.to/ibelick/crafting-a-modern-spotlight-effect-with-react-and-css-h1h Crafting a modern spotlight effect with React and CSSNote This article was originally published on my personal blog For more updates follow me on Twitter ibelick Recently the spotlight effect has been increasingly popular in modern websites and apps adding a touch of interactivity and delight to various elements such as cards This visually appealing effect draws users attention to specific areas on a page making the user interface more dynamic and engaging In this article we ll explore how to create a modern spotlight effect using React Tailwind CSS vanilla CSS and demonstrate how you can easily implement it in your own projects Let s dive in The components React TailwindCSSexport const CardSpotlightEffect gt const divRef useRef lt HTMLDivElement gt null const isFocused setIsFocused useState false const position setPosition useState x y const opacity setOpacity useState const handleMouseMove e React MouseEvent lt HTMLDivElement gt gt if divRef current isFocused return const div divRef current const rect div getBoundingClientRect setPosition x e clientX rect left y e clientY rect top const handleFocus gt setIsFocused true setOpacity const handleBlur gt setIsFocused false setOpacity const handleMouseEnter gt setOpacity const handleMouseLeave gt setOpacity return lt div ref divRef onMouseMove handleMouseMove onFocus handleFocus onBlur handleBlur onMouseEnter handleMouseEnter onMouseLeave handleMouseLeave className to slate relative max w md overflow hidden rounded xl border border slate bg gradient to r from slate px py shadow xl gt lt div className pointer events none absolute inset px opacity transition duration style opacity background radial gradient px circle at position x px position y px rgba transparent gt lt span className mb inline flex items center justify center rounded md bg indigo p shadow lg gt lt svg className h w text white xmlns fill none viewBox stroke currentColor aria hidden true gt lt span gt lt h className mb font medium tracking tight text white gt Hello lt h gt lt p className text sm text slate gt Lorem ipsum dolor sit amet consectetur adipisicing elit Impedit ex obcaecati natus eligendi delectus cum deleniti sunt in labore nihil quod quibusdam expedita nemo lt p gt lt div gt The component utilizes state variables to manage the spotlight s position opacity and focus state Event handlers are defined for the following scenarios Mouse movement handleMouseMove Update the spotlight s position based on the mouse coordinates relative to the card Focus handleFocus and blur handleBlur Manage the spotlight s visibility by adjusting its opacity when the card gains or loses focus Mouse entering handleMouseEnter and leaving handleMouseLeave Make the spotlight visible only when the mouse is inside the card area The component renders a div element representing the card and another div inside it to create the spotlight effect using a radial gradient background The spotlight effect follows the mouse as it moves over the card creating a dynamic and interactive appearance React CSSIf you don t want to use Tailwind CSS you can use the following CSS to achieve the same effect import React useRef useState from react import CardSpotlightEffect css export const CardSpotlightEffect gt const divRef useRef null const isFocused setIsFocused useState false const position setPosition useState x y const opacity setOpacity useState const handleMouseMove e gt if divRef current isFocused return const div divRef current const rect div getBoundingClientRect setPosition x e clientX rect left y e clientY rect top const handleFocus gt setIsFocused true setOpacity const handleBlur gt setIsFocused false setOpacity const handleMouseEnter gt setOpacity const handleMouseLeave gt setOpacity return lt div ref divRef onMouseMove handleMouseMove onFocus handleFocus onBlur handleBlur onMouseEnter handleMouseEnter onMouseLeave handleMouseLeave className card spotlight effect gt lt div className spotlight style opacity background radial gradient px circle at position x px position y px rgba transparent gt lt div gt lt span className icon gt SVG icon here lt span gt lt div gt lt h className greeting gt Hello lt h gt lt p className description gt Lorem ipsum dolor sit amet consectetur adipisicing elit Impedit ex obcaecati natus eligendi delectus cum deleniti sunt in labore nihil quod quibusdam expedita nemo lt p gt lt div gt card spotlight effect position relative max width rem overflow hidden border radius rem border px solid background image linear gradient to right fa b padding rem rem box shadow px px px rgba spotlight pointer events none position absolute inset px opacity transition opacity ms icon display inline flex align items center justify content center background color bf padding rem border radius rem box shadow px px px rgba px px px rgba greeting margin top rem font size rem font weight text transform uppercase color ffffff description margin top rem font size rem color b In this article we ve explored how to create a modern and engaging spotlight effect using React and CSS By implementing this effect in your websites or apps you can add a layer of interactivity that captures users attention and elevates the overall user experience Remember the spotlight effect isn t limited to just cards you can apply it to various elements such as input fields or buttons to make your interface more dynamic and visually appealing If you re interested in learning more about interactive effects check out my previous article onCreating an interactive spotlight border with CSS and React Feel free to experiment and adapt the techniques discussed in this tutorial to fit your specific design needs and preferences 2023-05-26 09:32:56
海外TECH Engadget Microsoft appeals for a new US agency to regulate AI https://www.engadget.com/microsoft-appeals-for-a-new-us-agency-to-regulate-ai-095510698.html?src=rss Microsoft appeals for a new US agency to regulate AIMicrosoft has called for the US federal government to create a new agency specifically focused on regulating AI Bloomberg reports In a Washington DC based speech attended by some members of Congress and non governmental organizations Microsoft vice chair and president Brad Smith remarked that quot the rule of law and a commitment to democracy has kept technology in its proper place quot and should do so again with AI Another part of Microsoft s quot blueprint quot for regulating AI involves mandating redundant AI circuit breakers a fail safe that would allow algorithms to be shut down quickly Smith also strongly suggested that President Biden create and sign an executive order necessitating that the National Institute of Standards and Technology s NIST risk management framework be followed by any federal agencies engaging with AI tools He added that Microsoft would also adhere to the NIST s guidelines and publish a yearly AI report for transparency Microsoft s calls for regulation follow similar remarks from OpenAI and Google OpenAI CEO Sam Altman testified before Congress that a quot new entity quot is needed to regulate AI and recommended quot independent audits quot of models Yet Altman previously suggested pulling OpenAI from the European Union if the company doesn t agree with new policies nbsp Kent Walker CEO president of global affairs for Google and Alphabet recently released a statement calling for quot broad based efforts ーacross government companies universities and more ーto help translate technological breakthroughs into widespread benefits while mitigating risks quot Concerns about AI have also led to people walking away from its development Former Google VP and engineering fellow Geoffrey Hinton commonly referred to as quot The Godfather of AI quot notably resigned in April to openly warn about AI s risks Alongside voicing his concerns Smith s hour long speech also served as an opportunity for him to laud recent AI advancements He compared its significance to that of the printing press or electricity In an accompanying blog post that echoed his speech Smith went so far as to say quot AI offers perhaps even more potential for the good of humanity than any invention that has preceded it quot This article originally appeared on Engadget at 2023-05-26 09:55:10
海外ニュース Japan Times latest articles Winning without fighting? Why China is exploring ‘cognitive warfare.’ https://www.japantimes.co.jp/news/2023/05/26/asia-pacific/china-pla-ai-cognitive-warfare/ Winning without fighting Why China is exploring cognitive warfare The term refers to operations based on tech such as AI aimed at influencing the minds of adversaries thereby creating a strategically favorable environment 2023-05-26 18:16:44
海外ニュース Japan Times latest articles Man arrested after killings of police officers and others in Nagano Prefecture https://www.japantimes.co.jp/news/2023/05/26/national/crime-legal/nagano-killing-suspect/ officers 2023-05-26 18:03:25
ニュース BBC News - Home Russian rocket hits Ukraine medical clinic https://www.bbc.co.uk/news/world-europe-65720853?at_medium=RSS&at_campaign=KARANGA dnipro 2023-05-26 09:50:21
ニュース BBC News - Home Mortgage rates rise after inflation surprise https://www.bbc.co.uk/news/business-65713905?at_medium=RSS&at_campaign=KARANGA figures 2023-05-26 09:40:32
ニュース BBC News - Home John Caldwell: Eleven arrested over shooting of police officer https://www.bbc.co.uk/news/uk-northern-ireland-65711267?at_medium=RSS&at_campaign=KARANGA february 2023-05-26 09:23:37
ニュース BBC News - Home British Airways cancels dozens of Heathrow flights after IT problem https://www.bbc.co.uk/news/uk-65719766?at_medium=RSS&at_campaign=KARANGA busiest 2023-05-26 09:46:41
ニュース BBC News - Home Ivan Toney: Banned Brentford striker diagnosed with gambling addiction https://www.bbc.co.uk/sport/football/65721139?at_medium=RSS&at_campaign=KARANGA toney 2023-05-26 09:38:04
ニュース BBC News - Home Ovo Energy customers hit with 'horror' bills of up to £116k https://www.bbc.co.uk/news/uk-england-gloucestershire-65544654?at_medium=RSS&at_campaign=KARANGA number 2023-05-26 09:31:24
ビジネス 不景気.com 岩手のクリーニング業「ブルースター」が破産、負債2億円 - 不景気com https://www.fukeiki.com/2023/05/cleaning-bluestar.html 岩手県盛岡市 2023-05-26 09:01:35
IT 週刊アスキー オンラインワークスペース「Miro」にて生成AIを活用した新機能「Miro AI」発表 https://weekly.ascii.jp/elem/000/004/138/4138430/ miroai 2023-05-26 18:15:00
ニュース THE BRIDGE B Dash Camp 2023 Spring in 札幌のPitch Arenaは、商談解析AI「JamRoll」開発のPoeticsが優勝 #bdashcamp https://thebridge.jp/2023/05/bdc-2023-spring-pitch-arena-finals BDashCampSpringin札幌のPitchArenaは、商談解析AI「JamRoll」開発のPoeticsが優勝bdashcamp本稿は、月日に開催されているBDashCampSpringinSapporoの取材の一部。 2023-05-26 09:00:38

コメント

このブログの人気の投稿

投稿時間: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件)