RAKIA

Responsive Vcard/Resume Template


In order to use the template correctly, you need to run it on localhost server.

You can use for example WAMP

To change colors go to index.html file line 13

    <link rel="stylesheet" type="text/css" href="css/colors/blue.css" id="csscolors" />

and change the color name with one of colors name in css/colors folder . 

by default the layout is on light mode ,for dark layout add "darkmode" class to body tag :

<body class="darkmode">...</body>

 

the template comes with 67 page transitions . page transitions list : 

1-Move to left/ from right
2-Move to right/ from left
3-Move to top/ from bottom
4->Move to bottom/ from top
5-Fade / from right
6-Fade / from left
7-Fade / from bottom
8-Fade / from top
9-Fade left / Fade right
10-Fade right / Fade left
11-Fade top / Fade bottom
12-Fade bottom / Fade top
13-Different easing / from right
14->Different easing / from left
15->Different easing / from bottom
16->Different easing / from top
17-Scale down / from right
18-Scale down / from left
19-Scale down / from bottom
20-Scale down / from top
21-Scale down / scale down
22-Scale up / scale up<
23-Move to left / scale up
24-Move to right / scale up
25-Move to top / scale up
26-Move to bottom / scale up
27-Scale down / scale up
28-Glue left / from right 
29-Glue right / from lefT
30-Glue bottom / from top 
31-Glue top / from bottom 
32-Flip rightt
33-Flip left
34-Flip top
35-Flip bottom
36-Fall
37-Newspaper
38-Push left / from right
39-Push right / from lefT
40-Push top / from bottom
41-Push bottom / from top
42-Push left / pull rightt
43-Push right / pull left
44-Push top / pull bottom
45-Push bottom / pull top
46-Fold left / from rightt
47-Fold right / from left
48-Fold top / from bottom
49-Fold bottom / from top
50-Move to right / unfold left
51-Move to left / unfold right
52-Move to bottom / unfold top
53-Move to top / unfold bottom
54-Room to lef
55-Room to right
56-Room to top
57-Room to bottom
58-Cube to left
59-Cube to right
60-Cube to top
61-Cube to bottom
62-Carousel to left
63-Carousel to right
64-Carousel to top
65-Carousel to bottom
66-Sides
67-Slide
 
Go to .main-nav elements and change the data-animation value by the chosen animation number .
 
 <li>

<a class="pt-trigger" data-animation="21" data-goto="3" id="services"><i class="peicon pe-7s-tools" aria-hidden="true"></i><span>Services</span></a>

</li>

by default the title icon have a shape with border radius ,you have two additional shape : square and rounded

just add "roundedtitle" or "squaretitle" classes to "i" tag in .icon-title elements . 
 
<div class="icon-title roundedtitle">

     <i class="fa fa-user" aria-hidden="true"></i>

</div>

by default the page header text border have a shape with border radius ,you have two additional shape : square and none . 

just add "squarefildset" or "noborderfield" classes to "fieldset" tag in .headerdes-container elements . 
 
<fieldset class="squarefildset">

                                <legend>STUDIES AND WORKS</legend>

                                <i class="peicon pe-7s-id" aria-hidden="true"></i>

                                <h3>ABOUT ME</h3>

</fieldset>

 

RAKIA have two homepage variants : 

image HOMEPAGE

<div id="fullpage">
                   <div class="section one">
                        <h1>HELLO , MY NAME IS</h1>
                        <h2>JOHNATAN DOE</h2>
                    </div>
                    <div class="section two">
                        <h1>I LIKE TO MAKE</h1>
                        <h2>COOL WEBBY STUFF</h2>
                    </div>
                    <div class="section three">
                        <h1>LIKE THIS</h1>
                        <h2>HTML TEMPLATE</h2>
                    </div>
                </div>

video HOMEPAGE

<div id="fullpage-video">
                    <div class="section fp-noscroll">
                        <div id="video_overlays"></div>                   
                        <video autoplay loop muted id="myVideo">
                           <source src="https://s3.amazonaws.com/distill-videos/videos/processed/9/MVI_0358.mp4.mp4" type="video/mp4">
                           <source src="https://s3.amazonaws.com/distill-videos/videos/processed/9/MVI_0358.mp4.webm" type="video/webm">
                        </video>
                        <div class="layer-video">
                            <h5>Hi, I am</h5>
                            <h4>Johnatan Doe</h4>
                            <h5>DEVELOPER AND BUSINESSMAN</h5>
                        </div>
                    </div>
                </div>

To add stories items (photos or videos ) go to js/main.js line 750 and your files path : 

items: [

                    buildItem("johndoe-1", "photo", 5, "images/portfolio5.jpeg", "images/portfolio5.jpeg", '', false, 1500997696),

                    buildItem("johndoe-2", "video", 0, "images/storyvideo.mp4", "images/storyvideo.mp4", '', false, 1500997696),

                    buildItem("johndoe-3", "photo", 3, "images/portrait.jpg", "images/portrait.jpg", '', false, 1500997696),

                ]

 

to edit the stories time or the last updated date you must use the unix time format : www.unixtimestamp.com/

 

                lastUpdated: 1500997696,

To receive emails from the contact form , open the file "contact.php" : 

- enter your mail in the variable : "$to_Email" line 4 .

- enter subject of the mail in the avriable : "$subject"  line 5