0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GoogleWebDesignerでswipegallery使った時の設定メモ

Last updated at Posted at 2017-05-15

こういうよく見る自動でチカチカ切り替わるやつの色とか変えたいって時

スクリーンショット-2017-05-15-19.19.09.png

コンポーネントプロパティにも出てこないしどこだよって思ったら、jsファイルに定義されてた
これやってから再度プレビューかけると変わった

/common/custom.js
function itemMouseOver(item) {
// 中略
  itemBG.style.backgroundColor = "#CBCBCB"; // ←これが背景色
  itemBG.style.borderColor = "#fb0000"; // ←これが枠線の色

しかしJavascriptちゃんと読もうね…
作業ファイルのhtmlみて順に追って行けば普通にわかったわ…
音ゲーしたら脳がすっきりして解決したので音ゲーは神

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?