Account name:
Password
(OpenID?)
(Forgot it?)
Remember Me
You're viewing
twine_tutorials
Create a Dreamwidth Account
Learn More
Interest
Region
Site and Account
FAQ
Email
Reload page in style:
light
Twine Tutorials
Entries tagged with type: image
How To Change Backgrounds In Passages
Friday,
14
July
2017
04:30 pm
giangtranguyen
Just copy and paste the code into Story Stylesheets, and then adjust it to your liking.
For example:
tw-story[tags~="yachi"] {
background: #ffffff; url("yachi.jpg");
}
How To Make Your Image A Link
Thursday,
6
July
2017
02:08 pm
giangtranguyen
Just copy and paste the code into the passage, then adjust it to your liking.
For example:
[[<img src="Kiyoko.png">->Next Passage]]
How To Make Your Image Have A Shadow
Wednesday,
5
July
2017
04:41 pm
giangtranguyen
Just copy and paste the code into the Story Stylesheets, then adjust it to your liking.
For example:
img
{
-webkit-filter: drop-shadow(8px 8px 10px red);
filter: drop-shadow(8px 8px 10px red);
}
How To Make Your Image No Longer Blurry When Hover
Wednesday,
5
July
2017
03:56 pm
giangtranguyen
Just copy and paste the code into the Story Stylesheets, then adjust it to your liking.
For example:
img
{
-webkit-filter: blur(5px);
filter: blur(5px);
}
img:hover
{
-webkit-filter: blur(0px);
filter: blur(0px);
}
How To Make Your Image Circular
Tuesday,
4
July
2017
09:48 pm
giangtranguyen
Just copy and paste the code into your Story Stylesheets, then adjust it to your liking.
For example:
img
{
border-radius: 50%;
}
How To Make Your Image Spin
Sunday,
2
July
2017
01:14 pm
giangtranguyen
Just copy and paste the code into your Story Stylesheets, and adjust it to your liking.
For example:
img
{
-webkit-transition: -webkit-transform .9s ease-in-out;
transition: transform .9s ease-in-out;
}
img:hover
{
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
How To Make Your Image Flip
Saturday,
1
July
2017
03:11 pm
giangtranguyen
Just copy and paste the code into the Story Stylesheets, then adjust it to your liking.
For example:
img
{
}
img:hover
{
transform: rotate(90deg/180deg/360deg);
-webkit-transform: rotate(90deg/180deg/360deg);
-moz-transform: rotate(90deg/180deg/360deg);
-ms-transform: rotate(90deg/180deg/360deg);
-o-transform: rotate(90deg/180deg/360deg);
}
Profile
Twine Tutorials
Twine
Recent Entries
Archive
Member Posts
Tags
Memories
Profile
April
2018
S
M
T
W
T
F
S
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Syndicate
Most Popular Tags
format: harlowe 2
-
28 uses
format: sugarcube 2
-
7 uses
tutorial: css
-
11 uses
tutorial: javascript
-
2 uses
tutorial: twine
-
33 uses
type: image
-
7 uses
type: template
-
2 uses
type: text
-
17 uses
Page Summary
giangtranguyen
-
How To Change Backgrounds In Passages
giangtranguyen
-
How To Make Your Image A Link
giangtranguyen
-
How To Make Your Image Have A Shadow
giangtranguyen
-
How To Make Your Image No Longer Blurry When Hover
giangtranguyen
-
How To Make Your Image Circular
giangtranguyen
-
How To Make Your Image Spin
giangtranguyen
-
How To Make Your Image Flip
Style Credit
Style:
Neutral Good
for
Practicality
by
timeasmymeasure
Expand Cut Tags
No cut tags
Page generated Sunday, 29 June 2025 02:40 pm
Powered by
Dreamwidth Studios