回答編集履歴
1
コード作り直し
test
CHANGED
@@ -1,3 +1,107 @@
|
|
1
|
+
全体的にコードを修正しました。h5やsmallなどは適宜調整してください。
|
2
|
+
|
3
|
+
またマウスオーバーの時に挙動が変になるのは、<a>タグの中に<a>タグを入れているためかもしれません。
|
4
|
+
|
5
|
+
Bootstrapはあまり詳しくないのですいません。。。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
---
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
こういうフレームワークを利用して短時間で期待通りのコードを書く方法として下記のようなやり方があります。
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
①期待するデザインになるようなソースを見つける。公式が望ましい。
|
18
|
+
|
19
|
+
→今回は、Bootstrapの[サンプルページ](https://getbootstrap.com/docs/4.2/examples/)のAlbumを利用
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
②微調整を行う。今回は横4つのカード表示なので`col-md-4`を`col-md-3`に変更。
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
③画像や文字列などのコードを置き換える。
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
---
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
上記方法を利用すると下記のような形になりますがいかがでしょうか?
|
36
|
+
|
37
|
+
あとは`<%= link_to community_path(community) do %>`〜`<%end%>`をどのようにするか検討する必要があります。
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
```ここに言語を入力
|
42
|
+
|
43
|
+
<div class="row">
|
44
|
+
|
45
|
+
<% @communities.each do |community| %>
|
46
|
+
|
47
|
+
<div class="col-md-3">
|
48
|
+
|
49
|
+
<div class="card mb-4 shadow-sm">
|
50
|
+
|
51
|
+
<%= attachment_image_tag community, :intro_image, fallback:"no-image.jpg", class:"card-img-top" %>
|
52
|
+
|
53
|
+
<div class="card-body">
|
54
|
+
|
55
|
+
<h5 class="card-title"><%= community.title %></h5>
|
56
|
+
|
57
|
+
<p class="card-text"><%= community.introduction%></p>
|
58
|
+
|
59
|
+
<div class="d-flex justify-content-between align-items-center">
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
<% if current_user.present? && current_user.following?(community) %>
|
64
|
+
|
65
|
+
<%= link_to community_follows_path(community.id), method: :delete, remote: true do %>
|
66
|
+
|
67
|
+
<button type="button" class="btn btn-primary btn-sm">フォローを外す</button>
|
68
|
+
|
69
|
+
<%end%>
|
70
|
+
|
71
|
+
<% else %>
|
72
|
+
|
73
|
+
<%= link_to community_follows_path(community.id), method: :post, remote: true do %>
|
74
|
+
|
75
|
+
<button type="button" class="btn btn-outline-primary btn-sm">フォロー</button>
|
76
|
+
|
77
|
+
<%end%>
|
78
|
+
|
79
|
+
<%end%>
|
80
|
+
|
81
|
+
<small class="text-muted"><%= community.follows.count %></small>
|
82
|
+
|
83
|
+
</div>
|
84
|
+
|
85
|
+
</div>
|
86
|
+
|
87
|
+
</div>
|
88
|
+
|
89
|
+
</div>
|
90
|
+
|
91
|
+
<%end%>
|
92
|
+
|
93
|
+
</div>
|
94
|
+
|
95
|
+
```
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
---
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
1
105
|
[公式](https://getbootstrap.jp/docs/4.2/components/card/)をみると`card-body`クラスにリンクなども含んでいるので、下記のようにやってみたらどうなりますか?
|
2
106
|
|
3
107
|
|